Skip to content

Update rector/rector requirement from ^0.18.0 to ^0.19.0 #294

Update rector/rector requirement from ^0.18.0 to ^0.19.0

Update rector/rector requirement from ^0.18.0 to ^0.19.0 #294

Triggered via pull request January 9, 2024 09:12
Status Success
Total duration 54s
Artifacts

mutation.yml

on: pull_request
Matrix: mutation / roave-infection
Fit to window
Zoom out
Zoom in

Annotations

2 warnings
mutation / PHP 8.1-ubuntu-latest: src/ListenerConfigurationChecker.php#L64
Escaped Mutant for Mutator "ConcatOperandRemoval": --- Original +++ New @@ @@ throw new InvalidListenerConfigurationException($this->createNotCallableMessage($listener)); } } catch (ContainerExceptionInterface $exception) { - throw new InvalidListenerConfigurationException('Could not instantiate event listener or listener class has invalid configuration. Got ' . $this->listenerDump($listener) . '.', 0, $exception); + throw new InvalidListenerConfigurationException('Could not instantiate event listener or listener class has invalid configuration. Got ' . $this->listenerDump($listener), 0, $exception); } } }
mutation / PHP 8.1-ubuntu-latest: src/ListenerConfigurationChecker.php#L110
Escaped Mutant for Mutator "ConcatOperandRemoval": --- Original +++ New @@ @@ return sprintf('"%s" method is not defined in "%s" class.', $definition[1], $definition[0]::class); } } - return 'Listener must be a callable. Got ' . $this->listenerDump($definition) . '.'; + return 'Listener must be a callable. Got ' . $this->listenerDump($definition); } /** * @throws ContainerExceptionInterface Error while retrieving the entry from container.