Skip to content

typos

typos #19

Triggered via push December 16, 2023 23:46
Status Success
Total duration 51s
Artifacts

test.yml

on: push
Matrix: test
Fit to window
Zoom out
Zoom in

Annotations

21 warnings
PHP 8.2 test on ubuntu-latest: src/Attributes/CallableAttr.php#L29
Escaped Mutant for Mutator "FunctionCallRemoval": --- Original +++ New @@ @@ public function __construct(callable $callable) { $return = $callable(); - object(ParameterInterface::class)($return); + $this->parameter = $return; } public function __invoke(mixed $mixed) : mixed
PHP 8.2 test on ubuntu-latest: src/FloatParameter.php#L38
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ private ?float $max = null; public function __invoke(float $value) : float { - $this->assert($value); + return $value; } public function withDefault(float $value) : FloatParameterInterface
PHP 8.2 test on ubuntu-latest: src/NullParameter.php#L36
Escaped Mutant for Mutator "Throw_": --- Original +++ New @@ @@ if ($value === null) { return $value; } - throw new TypeError((string) message('Argument value provided is not of type null')); + new TypeError((string) message('Argument value provided is not of type null')); } /** * @codeCoverageIgnore
PHP 8.2 test on ubuntu-latest: src/NullParameter.php#L37
Escaped Mutant for Mutator "CastString": --- Original +++ New @@ @@ if ($value === null) { return $value; } - throw new TypeError((string) message('Argument value provided is not of type null')); + throw new TypeError(message('Argument value provided is not of type null')); } /** * @codeCoverageIgnore
PHP 8.2 test on ubuntu-latest: src/ObjectParameter.php#L40
Escaped Mutant for Mutator "Throw_": --- Original +++ New @@ @@ if ($this->type->validate($value)) { return $value; } - throw new TypeError((string) message('Argument value provided is not of type `%type%`', type: $this->className())); + new TypeError((string) message('Argument value provided is not of type `%type%`', type: $this->className())); } public function setUp() : void {
PHP 8.2 test on ubuntu-latest: src/ObjectParameter.php#L41
Escaped Mutant for Mutator "CastString": --- Original +++ New @@ @@ if ($this->type->validate($value)) { return $value; } - throw new TypeError((string) message('Argument value provided is not of type `%type%`', type: $this->className())); + throw new TypeError(message('Argument value provided is not of type `%type%`', type: $this->className())); } public function setUp() : void {
PHP 8.2 test on ubuntu-latest: src/Traits/NumericParameterTrait.php#L266
Escaped Mutant for Mutator "CastString": --- Original +++ New @@ @@ return $argument; } $values = implode(',', $this->reject); - throw new InvalidArgumentException((string) message('Argument value provided `%provided%` is on rejected list `%value%`', provided: strval($argument), value: "[{$values}]")); + throw new InvalidArgumentException(message('Argument value provided `%provided%` is on rejected list `%value%`', provided: strval($argument), value: "[{$values}]")); } if ($this->min() !== null && $argument < $this->min()) { throw new InvalidArgumentException((string) message('Argument value provided `%provided%` is less than `%min%`', provided: strval($argument), min: strval($this->min())));
PHP 8.1 test on ubuntu-latest: src/Attributes/CallableAttr.php#L29
Escaped Mutant for Mutator "FunctionCallRemoval": --- Original +++ New @@ @@ public function __construct(callable $callable) { $return = $callable(); - object(ParameterInterface::class)($return); + $this->parameter = $return; } public function __invoke(mixed $mixed) : mixed
PHP 8.1 test on ubuntu-latest: src/FloatParameter.php#L38
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ private ?float $max = null; public function __invoke(float $value) : float { - $this->assert($value); + return $value; } public function withDefault(float $value) : FloatParameterInterface
PHP 8.1 test on ubuntu-latest: src/NullParameter.php#L36
Escaped Mutant for Mutator "Throw_": --- Original +++ New @@ @@ if ($value === null) { return $value; } - throw new TypeError((string) message('Argument value provided is not of type null')); + new TypeError((string) message('Argument value provided is not of type null')); } /** * @codeCoverageIgnore
PHP 8.1 test on ubuntu-latest: src/NullParameter.php#L37
Escaped Mutant for Mutator "CastString": --- Original +++ New @@ @@ if ($value === null) { return $value; } - throw new TypeError((string) message('Argument value provided is not of type null')); + throw new TypeError(message('Argument value provided is not of type null')); } /** * @codeCoverageIgnore
PHP 8.1 test on ubuntu-latest: src/ObjectParameter.php#L40
Escaped Mutant for Mutator "Throw_": --- Original +++ New @@ @@ if ($this->type->validate($value)) { return $value; } - throw new TypeError((string) message('Argument value provided is not of type `%type%`', type: $this->className())); + new TypeError((string) message('Argument value provided is not of type `%type%`', type: $this->className())); } public function setUp() : void {
PHP 8.1 test on ubuntu-latest: src/ObjectParameter.php#L41
Escaped Mutant for Mutator "CastString": --- Original +++ New @@ @@ if ($this->type->validate($value)) { return $value; } - throw new TypeError((string) message('Argument value provided is not of type `%type%`', type: $this->className())); + throw new TypeError(message('Argument value provided is not of type `%type%`', type: $this->className())); } public function setUp() : void {
PHP 8.1 test on ubuntu-latest: src/Traits/NumericParameterTrait.php#L266
Escaped Mutant for Mutator "CastString": --- Original +++ New @@ @@ return $argument; } $values = implode(',', $this->reject); - throw new InvalidArgumentException((string) message('Argument value provided `%provided%` is on rejected list `%value%`', provided: strval($argument), value: "[{$values}]")); + throw new InvalidArgumentException(message('Argument value provided `%provided%` is on rejected list `%value%`', provided: strval($argument), value: "[{$values}]")); } if ($this->min() !== null && $argument < $this->min()) { throw new InvalidArgumentException((string) message('Argument value provided `%provided%` is less than `%min%`', provided: strval($argument), min: strval($this->min())));
PHP 8.3 test on ubuntu-latest: src/Attributes/CallableAttr.php#L29
Escaped Mutant for Mutator "FunctionCallRemoval": --- Original +++ New @@ @@ public function __construct(callable $callable) { $return = $callable(); - object(ParameterInterface::class)($return); + $this->parameter = $return; } public function __invoke(mixed $mixed) : mixed
PHP 8.3 test on ubuntu-latest: src/FloatParameter.php#L38
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ private ?float $max = null; public function __invoke(float $value) : float { - $this->assert($value); + return $value; } public function withDefault(float $value) : FloatParameterInterface
PHP 8.3 test on ubuntu-latest: src/NullParameter.php#L36
Escaped Mutant for Mutator "Throw_": --- Original +++ New @@ @@ if ($value === null) { return $value; } - throw new TypeError((string) message('Argument value provided is not of type null')); + new TypeError((string) message('Argument value provided is not of type null')); } /** * @codeCoverageIgnore
PHP 8.3 test on ubuntu-latest: src/NullParameter.php#L37
Escaped Mutant for Mutator "CastString": --- Original +++ New @@ @@ if ($value === null) { return $value; } - throw new TypeError((string) message('Argument value provided is not of type null')); + throw new TypeError(message('Argument value provided is not of type null')); } /** * @codeCoverageIgnore
PHP 8.3 test on ubuntu-latest: src/ObjectParameter.php#L40
Escaped Mutant for Mutator "Throw_": --- Original +++ New @@ @@ if ($this->type->validate($value)) { return $value; } - throw new TypeError((string) message('Argument value provided is not of type `%type%`', type: $this->className())); + new TypeError((string) message('Argument value provided is not of type `%type%`', type: $this->className())); } public function setUp() : void {
PHP 8.3 test on ubuntu-latest: src/ObjectParameter.php#L41
Escaped Mutant for Mutator "CastString": --- Original +++ New @@ @@ if ($this->type->validate($value)) { return $value; } - throw new TypeError((string) message('Argument value provided is not of type `%type%`', type: $this->className())); + throw new TypeError(message('Argument value provided is not of type `%type%`', type: $this->className())); } public function setUp() : void {
PHP 8.3 test on ubuntu-latest: src/Traits/NumericParameterTrait.php#L266
Escaped Mutant for Mutator "CastString": --- Original +++ New @@ @@ return $argument; } $values = implode(',', $this->reject); - throw new InvalidArgumentException((string) message('Argument value provided `%provided%` is on rejected list `%value%`', provided: strval($argument), value: "[{$values}]")); + throw new InvalidArgumentException(message('Argument value provided `%provided%` is on rejected list `%value%`', provided: strval($argument), value: "[{$values}]")); } if ($this->min() !== null && $argument < $this->min()) { throw new InvalidArgumentException((string) message('Argument value provided `%provided%` is less than `%min%`', provided: strval($argument), min: strval($this->min())));