Skip to content

Lock file maintenance #337

Lock file maintenance

Lock file maintenance #337

Triggered via push April 10, 2026 06:15
Status Success
Total duration 10m 58s
Artifacts
Matrix: Mutation tests
Fit to window
Zoom out
Zoom in

Annotations

10 warnings
Mutation tests (locked, 8.5, ubuntu-latest): src/DependencyInjection/HandlerServiceLocatorCompilerPass.php#L64
Escaped Mutant for Mutator "ConcatOperandRemoval": @@ @@ continue; // skip first parameter (command) } - $key = $prefix . $parameter->getName(); + $key = $parameter->getName(); $attributes = $parameter->getAttributes(Inject::class);
Mutation tests (locked, 8.5, ubuntu-latest): src/DependencyInjection/HandlerServiceLocatorCompilerPass.php#L64
Escaped Mutant for Mutator "Concat": @@ @@ continue; // skip first parameter (command) } - $key = $prefix . $parameter->getName(); + $key = $parameter->getName() . $prefix; $attributes = $parameter->getAttributes(Inject::class);
Mutation tests (locked, 8.5, ubuntu-latest): src/DependencyInjection/HandlerServiceLocatorCompilerPass.php#L61
Escaped Mutant for Mutator "Continue_": @@ @@ foreach ($method->getParameters() as $index => $parameter) { if ($index === 0) { - continue; // skip first parameter (command) + break; // skip first parameter (command) } $key = $prefix . $parameter->getName();
Mutation tests (locked, 8.5, ubuntu-latest): src/DependencyInjection/HandlerServiceLocatorCompilerPass.php#L60
Escaped Mutant for Mutator "Identical": @@ @@ $prefix = strtolower($method->getName()) . '.'; foreach ($method->getParameters() as $index => $parameter) { - if ($index === 0) { + if ($index !== 0) { continue; // skip first parameter (command) }
Mutation tests (locked, 8.5, ubuntu-latest): src/DependencyInjection/HandlerServiceLocatorCompilerPass.php#L57
Escaped Mutant for Mutator "ConcatOperandRemoval": @@ @@ private function services(ReflectionMethod $method, ContainerInterface $container): array { $services = []; - $prefix = strtolower($method->getName()) . '.'; + $prefix = strtolower($method->getName()); foreach ($method->getParameters() as $index => $parameter) { if ($index === 0) {
Mutation tests (locked, 8.5, ubuntu-latest): src/DependencyInjection/HandlerServiceLocatorCompilerPass.php#L57
Escaped Mutant for Mutator "Concat": @@ @@ private function services(ReflectionMethod $method, ContainerInterface $container): array { $services = []; - $prefix = strtolower($method->getName()) . '.'; + $prefix = '.' . strtolower($method->getName()); foreach ($method->getParameters() as $index => $parameter) { if ($index === 0) {
Mutation tests (locked, 8.5, ubuntu-latest): src/DependencyInjection/HandlerServiceLocatorCompilerPass.php#L57
Escaped Mutant for Mutator "ConcatOperandRemoval": @@ @@ private function services(ReflectionMethod $method, ContainerInterface $container): array { $services = []; - $prefix = strtolower($method->getName()) . '.'; + $prefix = '.'; foreach ($method->getParameters() as $index => $parameter) { if ($index === 0) {
Mutation tests (locked, 8.5, ubuntu-latest): src/DependencyInjection/HandlerServiceLocatorCompilerPass.php#L57
Escaped Mutant for Mutator "UnwrapStrToLower": @@ @@ private function services(ReflectionMethod $method, ContainerInterface $container): array { $services = []; - $prefix = strtolower($method->getName()) . '.'; + $prefix = $method->getName() . '.'; foreach ($method->getParameters() as $index => $parameter) { if ($index === 0) {
Mutation tests (locked, 8.5, ubuntu-latest): src/DependencyInjection/HandlerServiceLocatorCompilerPass.php#L43
Escaped Mutant for Mutator "Assignment": @@ @@ $services = []; foreach (HandlerFinder::findInClass($aggregateClass) as $aggregateHandler) { - $services += $this->services(new ReflectionMethod($aggregateClass, $aggregateHandler->method), $container); + $services = $this->services(new ReflectionMethod($aggregateClass, $aggregateHandler->method), $container); } $container->register($parameterResolverId, SymfonyParameterResolver::class)
Mutation tests (locked, 8.5, ubuntu-latest): src/DependencyInjection/CommandHandlerCompilerPass.php#L40
Escaped Mutant for Mutator "UnwrapStrToLower": @@ @@ $parameterResolverId = sprintf('.event_sourcing.handler_parameter_resolver.%s', $aggregateName); foreach (HandlerFinder::findInClass($aggregateClass) as $aggregateHandler) { - $handlerId = strtolower(sprintf('event_sourcing.handler.%s.%s', $aggregateName, $aggregateHandler->method)); + $handlerId = sprintf('event_sourcing.handler.%s.%s', $aggregateName, $aggregateHandler->method); $handlerClass = $aggregateHandler->static ? CreateAggregateHandler::class : UpdateAggregateHandler::class; $container->register($handlerId, $handlerClass)