fix: Remove the deprecation layer (#187) #185
tests.yaml
on: push
Matrix: tests
Infection
1m 27s
Check status
3s
Annotations
2 errors and 3 warnings
Infection
Process completed with exit code 2.
|
Check status
Process completed with exit code 1.
|
Infection:
src/Input/DecoratesInput.php#L48
Escaped Mutant for Mutator "FalseValue":
--- Original
+++ New
@@ @@
{
return $this->input->getFirstArgument();
}
- public function hasParameterOption(string|array $values, bool $onlyParams = false) : bool
+ public function hasParameterOption(string|array $values, bool $onlyParams = true) : bool
{
return $this->input->hasParameterOption(...func_get_args());
}
|
Infection:
src/Output/DecoratesOutput.php#L43
Escaped Mutant for Mutator "DecrementInteger":
--- Original
+++ New
@@ @@
{
$this->output->write(...func_get_args());
}
- public function writeln(string|iterable $messages, int $options = 0) : void
+ public function writeln(string|iterable $messages, int $options = -1) : void
{
$this->output->writeln(...func_get_args());
}
|
Infection:
src/Output/DecoratesOutput.php#L43
Escaped Mutant for Mutator "IncrementInteger":
--- Original
+++ New
@@ @@
{
$this->output->write(...func_get_args());
}
- public function writeln(string|iterable $messages, int $options = 0) : void
+ public function writeln(string|iterable $messages, int $options = 1) : void
{
$this->output->writeln(...func_get_args());
}
|