Skip to content
Triggered via schedule August 19, 2024 08:13
Status Failure
Total duration 10m 6s
Artifacts 1

ci.yaml

on: schedule
Matrix: Tests
Matrix: Coding standard
Matrix: Static analysis
Matrix: Test for mutants
Matrix: Code coverage finish
Status check - CI
2s
Status check - CI
Fit to window
Zoom out
Zoom in

Annotations

3 errors and 10 warnings
Static analysis (ubuntu-latest, 8.3): src/Printers/Dumper.php#L107
Binary operation "+" between (int|string) and int<1, max> results in an error.
Static analysis (ubuntu-latest, 8.3)
Process completed with exit code 2.
Status check - CI
Process completed with exit code 1.
Test for mutants (ubuntu-latest, 8.3): src/Args/ArgsChecker.php#L46
Escaped Mutant for Mutator "Foreach_": @@ @@ public function checkAllowedArgs(array $argNames): void { $actualArgNames = array_keys($this->args); - foreach ($actualArgNames as $name) { + foreach ([] as $name) { if (!in_array($name, $argNames, true)) { $hint = Helpers::getSuggestion($argNames, (string) $name); throw InvalidArgument::create()->withMessage(sprintf('Unknown argument "%s" given to "%s"%s', $name, $this->class, $hint !== null ? sprintf(', did you mean "%s"?', $hint) : ''));
Test for mutants (ubuntu-latest, 8.3): src/Args/ArgsChecker.php#L138
Escaped Mutant for Mutator "LogicalNot": @@ @@ public function checkNullableInt(string $argName): ?int { $argValue = $this->args[$argName]; - if ($argValue !== null && !is_int($argValue)) { + if ($argValue !== null && is_int($argValue)) { throw InvalidArgument::create()->withMessage($this->formatMessage('int|null', $argName, $argValue)); } return $argValue;
Test for mutants (ubuntu-latest, 8.3): src/Args/ArgsChecker.php#L138
Escaped Mutant for Mutator "LogicalAndAllSubExprNegation": @@ @@ public function checkNullableInt(string $argName): ?int { $argValue = $this->args[$argName]; - if ($argValue !== null && !is_int($argValue)) { + if (!($argValue !== null) && is_int($argValue)) { throw InvalidArgument::create()->withMessage($this->formatMessage('int|null', $argName, $argValue)); } return $argValue;
Test for mutants (ubuntu-latest, 8.3): src/Args/ArgsChecker.php#L170
Escaped Mutant for Mutator "LogicalNot": @@ @@ if (is_int($argValue)) { $argValue = (float) $argValue; } - if ($argValue !== null && !is_float($argValue)) { + if ($argValue !== null && is_float($argValue)) { throw InvalidArgument::create()->withMessage($this->formatMessage('float|null', $argName, $argValue)); } return $argValue;
Test for mutants (ubuntu-latest, 8.3): src/Args/ArgsChecker.php#L170
Escaped Mutant for Mutator "LogicalAndAllSubExprNegation": @@ @@ if (is_int($argValue)) { $argValue = (float) $argValue; } - if ($argValue !== null && !is_float($argValue)) { + if (!($argValue !== null) && is_float($argValue)) { throw InvalidArgument::create()->withMessage($this->formatMessage('float|null', $argName, $argValue)); } return $argValue;
Test for mutants (ubuntu-latest, 8.3): src/Args/ArgsChecker.php#L194
Escaped Mutant for Mutator "LogicalNot": @@ @@ public function checkNullableString(string $argName): ?string { $argValue = $this->args[$argName]; - if ($argValue !== null && !is_string($argValue)) { + if ($argValue !== null && is_string($argValue)) { throw InvalidArgument::create()->withMessage($this->formatMessage('string|null', $argName, $argValue)); } return $argValue;
Test for mutants (ubuntu-latest, 8.3): src/Args/ArgsChecker.php#L194
Escaped Mutant for Mutator "LogicalAndAllSubExprNegation": @@ @@ public function checkNullableString(string $argName): ?string { $argValue = $this->args[$argName]; - if ($argValue !== null && !is_string($argValue)) { + if (!($argValue !== null) && is_string($argValue)) { throw InvalidArgument::create()->withMessage($this->formatMessage('string|null', $argName, $argValue)); } return $argValue;
Test for mutants (ubuntu-latest, 8.3): src/Args/ArgsChecker.php#L241
Escaped Mutant for Mutator "InstanceOf_": @@ @@ public function checkInstanceOf(string $argName, string $className): object { $argValue = $this->args[$argName]; - if (!$argValue instanceof $className) { + if (!true) { throw InvalidArgument::create()->withMessage($this->formatMessage("instance of {$className}", $argName, $argValue)); } return $argValue;
Test for mutants (ubuntu-latest, 8.3): src/Args/ArgsChecker.php#L258
Escaped Mutant for Mutator "InstanceOf_": @@ @@ public function checkNullableInstanceOf(string $argName, string $className): ?object { $argValue = $this->args[$argName]; - if ($argValue !== null && !$argValue instanceof $className) { + if ($argValue !== null && !true) { throw InvalidArgument::create()->withMessage($this->formatMessage("instance of {$className}", $argName, $argValue)); } return $argValue;
Test for mutants (ubuntu-latest, 8.3): src/Args/ArgsChecker.php#L258
Escaped Mutant for Mutator "LogicalAndAllSubExprNegation": @@ @@ public function checkNullableInstanceOf(string $argName, string $className): ?object { $argValue = $this->args[$argName]; - if ($argValue !== null && !$argValue instanceof $className) { + if (!($argValue !== null) && $argValue instanceof $className) { throw InvalidArgument::create()->withMessage($this->formatMessage("instance of {$className}", $argName, $argValue)); } return $argValue;

Artifacts

Produced during runtime
Name Size
Logs - Mutations
29.2 KB