chevere 4 #146
Annotations
4 warnings
PHP 8.1 test on ubuntu-latest:
src/Run.php#L123
Escaped Mutant for Mutator "ArrayItemRemoval":
--- Original
+++ New
@@ @@
private function assertNoSkipOverflow(string $job, MessageInterface $message) : void
{
if ($this->skip->contains($job)) {
- throw new OverflowException(strtr($message->__toString(), ['%job%' => $job]));
+ throw new OverflowException(strtr($message->__toString(), []));
}
}
}
|
PHP 8.1 test on ubuntu-latest:
src/Runner.php#L157
Escaped Mutant for Mutator "Continue_":
--- Original
+++ New
@@ @@
/** @var ResponseReferenceInterface $value */
if ($value->key() === null) {
$arguments[$name] = $this->run->getReturn($value->job())->mixed();
- continue;
+ break;
}
/** @var ResponseReferenceInterface $value */
$arguments[$name] = $this->run->getReturn($value->job())->array()[$value->key()];
|
PHP 8.2 test on ubuntu-latest:
src/Run.php#L123
Escaped Mutant for Mutator "ArrayItemRemoval":
--- Original
+++ New
@@ @@
private function assertNoSkipOverflow(string $job, MessageInterface $message) : void
{
if ($this->skip->contains($job)) {
- throw new OverflowException(strtr($message->__toString(), ['%job%' => $job]));
+ throw new OverflowException(strtr($message->__toString(), []));
}
}
}
|
PHP 8.2 test on ubuntu-latest:
src/Runner.php#L157
Escaped Mutant for Mutator "Continue_":
--- Original
+++ New
@@ @@
/** @var ResponseReferenceInterface $value */
if ($value->key() === null) {
$arguments[$name] = $this->run->getReturn($value->job())->mixed();
- continue;
+ break;
}
/** @var ResponseReferenceInterface $value */
$arguments[$name] = $this->run->getReturn($value->job())->array()[$value->key()];
|