Clean up #141
Annotations
1 error and 1 warning
Test
Process completed with exit code 1.
|
Test:
src/CallableFake.php#L131
Escaped Mutant for Mutator "CastBool":
--- Original
+++ New
@@ @@
public function called(callable $callback): array
{
return array_filter($this->invocations, function (array $arguments) use ($callback): bool {
- return (bool) $callback(...$arguments);
+ return $callback(...$arguments);
});
}
}
|