Skip to content

Update rector/rector requirement from ^1.2 to ^2.0 #329

Update rector/rector requirement from ^1.2 to ^2.0

Update rector/rector requirement from ^1.2 to ^2.0 #329

Triggered via pull request December 13, 2024 09:47
Status Success
Total duration 57s
Artifacts

mutation.yml

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

Annotations

3 warnings
mutation / PHP 8.3-ubuntu-latest
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
mutation / PHP 8.3-ubuntu-latest: src/ListenerConfigurationChecker.php#L63
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.3-ubuntu-latest: src/ListenerConfigurationChecker.php#L109
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.