feat(types): Traceless types #706
Annotations
1 error and 2 warnings
mutation tests (8.2, ubuntu-latest)
Process completed with exit code 2.
|
mutation tests (8.2, ubuntu-latest):
src/Psl/Type/Exception/Exception.php#L28
Escaped Mutant for Mutator "DecrementInteger":
--- Original
+++ New
@@ @@
*/
public function __construct(string $message, string $actual, array $paths, ?Throwable $previous = null)
{
- parent::__construct($message, 0, $previous);
+ parent::__construct($message, -1, $previous);
$this->paths = $paths;
$this->actual = $actual;
}
|
mutation tests (8.2, ubuntu-latest):
src/Psl/Type/Exception/Exception.php#L28
Escaped Mutant for Mutator "IncrementInteger":
--- Original
+++ New
@@ @@
*/
public function __construct(string $message, string $actual, array $paths, ?Throwable $previous = null)
{
- parent::__construct($message, 0, $previous);
+ parent::__construct($message, 1, $previous);
$this->paths = $paths;
$this->actual = $actual;
}
|