Skip to content

Update PHPStan packages #4222

Update PHPStan packages

Update PHPStan packages #4222

Triggered via push May 15, 2024 12:31
Status Success
Total duration 1m 31s
Artifacts
Matrix: Mutation tests
Fit to window
Zoom out
Zoom in

Annotations

12 warnings
Mutation tests (locked, 8.1, ubuntu-latest)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/cache@v3.0.11. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Mutation tests (locked, 8.1, ubuntu-latest): src/Mapping/ExpandTags.php#L65
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ assert($definition instanceof Definition); assert(is_array($annotations) && $annotations !== []); $this->appendTags($definition, $annotations); - $container->addResource(new FileResource($file)); + } } /**
Mutation tests (locked, 8.1, ubuntu-latest): src/Routing/ErrorHandling/RegisterDefaultComponents.php#L34
Escaped Mutant for Mutator "LogicalOr": --- Original +++ New @@ @@ } private function hasService(ContainerBuilder $container, string $service) : bool { - return $container->hasAlias($service) || $container->hasDefinition($service); + return $container->hasAlias($service) && $container->hasDefinition($service); } }
Mutation tests (locked, 8.1, ubuntu-latest): src/Routing/Mezzio/RegisterServices.php#L130
Escaped Mutant for Mutator "FalseValue": --- Original +++ New @@ @@ if (isset($tag['methods'])) { $tag['methods'] = explode(',', $tag['methods']); } - $tag['async'] = (bool) ($tag['async'] ?? false); + $tag['async'] = (bool) ($tag['async'] ?? true); $tag['serviceId'] = $serviceId; $routes[] = $tag; $names[$tag['route_name']] = $serviceId;
Mutation tests (locked, 8.1, ubuntu-latest): src/Routing/Mezzio/RegisterServices.php#L153
Escaped Mutant for Mutator "IncrementInteger": --- Original +++ New @@ @@ $list = []; foreach ($container->findTaggedServiceIds(Tags::HTTP_MIDDLEWARE) as $serviceId => $tags) { foreach ($tags as $tag) { - $priority = (int) ($tag['priority'] ?? 0); + $priority = (int) ($tag['priority'] ?? 1); $path = (string) ($tag['path'] ?? '/'); $list[$priority][$path] ??= []; $list[$priority][$path][] = $serviceId;
Mutation tests (locked, 8.1, ubuntu-latest): src/Routing/Mezzio/RegisterServices.php#L161
Escaped Mutant for Mutator "AssignCoalesce": --- Original +++ New @@ @@ $list[$priority][$path][] = $serviceId; } } - $list[Priorities::CONTENT_NEGOTIATION]['/'] ??= []; + $list[Priorities::CONTENT_NEGOTIATION]['/'] = []; $list[Priorities::BEFORE_CUSTOM]['/'] ??= []; $list[Priorities::AFTER_CUSTOM]['/'] ??= []; $list[Priorities::CONTENT_NEGOTIATION]['/'][] = ContentTypeMiddleware::class;
Mutation tests (locked, 8.1, ubuntu-latest): src/Routing/Mezzio/RegisterServices.php#L162
Escaped Mutant for Mutator "AssignCoalesce": --- Original +++ New @@ @@ } } $list[Priorities::CONTENT_NEGOTIATION]['/'] ??= []; - $list[Priorities::BEFORE_CUSTOM]['/'] ??= []; + $list[Priorities::BEFORE_CUSTOM]['/'] = []; $list[Priorities::AFTER_CUSTOM]['/'] ??= []; $list[Priorities::CONTENT_NEGOTIATION]['/'][] = ContentTypeMiddleware::class; $list[Priorities::BEFORE_CUSTOM]['/'][] = RouteMiddleware::class;
Mutation tests (locked, 8.1, ubuntu-latest): src/Routing/Mezzio/RegisterServices.php#L248
Escaped Mutant for Mutator "ConcatOperandRemoval": --- Original +++ New @@ @@ foreach ($routes as $route) { // @phpstan-ignore-next-line $services[] = $this->{self::BEHAVIORS[$route['behavior']]['callback']}('http.route.' . $route['route_name'], $route, $container); - $aliases['.http.route.' . $route['route_name']] = 'http.route.' . $route['route_name']; + $aliases[$route['route_name']] = 'http.route.' . $route['route_name']; } $middleware = []; foreach ($middlewareList as $path => $servicesIds) {
Mutation tests (locked, 8.1, ubuntu-latest): src/Routing/Mezzio/RegisterServices.php#L248
Escaped Mutant for Mutator "ConcatOperandRemoval": --- Original +++ New @@ @@ foreach ($routes as $route) { // @phpstan-ignore-next-line $services[] = $this->{self::BEHAVIORS[$route['behavior']]['callback']}('http.route.' . $route['route_name'], $route, $container); - $aliases['.http.route.' . $route['route_name']] = 'http.route.' . $route['route_name']; + $aliases['.http.route.'] = 'http.route.' . $route['route_name']; } $middleware = []; foreach ($middlewareList as $path => $servicesIds) {
Mutation tests (locked, 8.1, ubuntu-latest): src/Routing/Mezzio/RegisterServices.php#L248
Escaped Mutant for Mutator "ConcatOperandRemoval": --- Original +++ New @@ @@ foreach ($routes as $route) { // @phpstan-ignore-next-line $services[] = $this->{self::BEHAVIORS[$route['behavior']]['callback']}('http.route.' . $route['route_name'], $route, $container); - $aliases['.http.route.' . $route['route_name']] = 'http.route.' . $route['route_name']; + $aliases['.http.route.' . $route['route_name']] = 'http.route.'; } $middleware = []; foreach ($middlewareList as $path => $servicesIds) {
Mutation tests (locked, 8.1, ubuntu-latest): src/Routing/Mezzio/RegisterServices.php#L302
Escaped Mutant for Mutator "ConcatOperandRemoval": --- Original +++ New @@ @@ $container->setDefinition(MiddlewarePipe::class, $middlewarePipeline); $aliases['.http.middleware_pipeline'] = MiddlewarePipe::class; // -- routing - $router = $this->createService(FastRouteRouter::class, [null, null, $this->readBCParameter($container, $this->applicationName . '.router_config', 'router_config', [])]); + $router = $this->createService(FastRouteRouter::class, [null, null, $this->readBCParameter($container, '.router_config', 'router_config', [])]); $container->setDefinition(FastRouteRouter::class, $router); $container->setAlias(RouterInterface::class, FastRouteRouter::class); $aliases['.http.router'] = FastRouteRouter::class;
Mutation tests (locked, 8.1, ubuntu-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/