typos #80
Annotations
4 warnings
Mutation testing (Infection):
src/Controller.php#L115
Escaped Mutant for Mutator "MethodCallRemoval":
@@ @@
protected function assertRuntime(ReflectionActionInterface $reflection): void
{
$this->query();
- $this->body();
+
$this->files();
}
}
|
Mutation testing (Infection):
src/Controller.php#L116
Escaped Mutant for Mutator "MethodCallRemoval":
@@ @@
{
$this->query();
$this->body();
- $this->files();
+
}
}
|
Mutation testing (Infection):
src/ControllerName.php#L24
Escaped Mutant for Mutator "PublicVisibility":
@@ @@
final class ControllerName implements ControllerNameInterface
{
use ControllerNameTrait;
- public static function interface(): string
+ protected static function interface(): string
{
return ControllerInterface::class;
}
}
|
Mutation testing (Infection):
src/Headers.php#L56
Escaped Mutant for Mutator "ArrayOneItem":
@@ @@
foreach ($this->getIterator() as $header) {
$return[$header->name] = $header->value;
}
- return $return;
+ return count($return) > 1 ? array_slice($return, 0, 1, true) : $return;
}
/**
* @return VectorInterface<Headers>
|
Loading