Use default FUNDING and ISSUE_TEMPLATE #4687
Triggered via pull request
December 6, 2025 22:11
Status
Failure
Total duration
1h 29m 41s
Artifacts
–
Annotations
1 error and 3 warnings
|
mutation / PHP 8.4-ubuntu-latest
Process completed with exit code 1.
|
|
mutation / PHP 8.4-ubuntu-latest:
src/Rule/Trait/CountableLimitHandlerTrait.php#L52
Escaped Mutant for Mutator "ReturnRemoval":
@@ @@
*/
if ($rule->getExactly() !== null && $number !== $rule->getExactly()) {
$result->addError($rule->getNotExactlyMessage(), ['exactly' => $rule->getExactly(), 'property' => $context->getTranslatedProperty(), 'Property' => $context->getCapitalizedTranslatedProperty(), 'number' => $number]);
- return;
+
}
if ($rule->getMin() !== null && $number < $rule->getMin()) {
$result->addError($rule->getLessThanMinMessage(), ['min' => $rule->getMin(), 'property' => $context->getTranslatedProperty(), 'Property' => $context->getCapitalizedTranslatedProperty(), 'number' => $number]);
|
|
mutation / PHP 8.4-ubuntu-latest:
src/Rule/JsonHandler.php#L63
Escaped Mutant for Mutator "ReturnRemoval":
@@ @@
private function isValidJson(string $value): bool
{
if (function_exists('json_validate')) {
- /** @var bool Can be removed after upgrading to PHP 8.3 */
- return json_validate($value);
+
}
json_decode($value);
return json_last_error() === JSON_ERROR_NONE;
}
}
|
|
mutation / PHP 8.4-ubuntu-latest:
src/Rule/FilledOnlyOneOfHandler.php#L54
Escaped Mutant for Mutator "ReturnRemoval":
@@ @@
$filledCount++;
}
if ($filledCount > 1) {
- return $this->getGenericErrorResult($rule, $context);
+
}
}
return $filledCount === 1 ? $result : $this->getGenericErrorResult($rule, $context);
|