Skip to content

CS Fixes

CS Fixes #1578

Triggered via push June 26, 2026 15:26
Status Success
Total duration 4m 58s
Artifacts 8

ci.yml

on: push
Matrix: behat-lowest-deps
Matrix: behat-symfony-next
Matrix: behat
Matrix: php-cs-fixer
Matrix: phpunit-lowest-deps
Matrix: phpunit-symfony-next
Matrix: phpunit
Fit to window
Zoom out
Zoom in

Annotations

3 errors and 20 warnings
PHPUnit (Symfony NEXT 8.2) (PHP 8.5)
Process completed with exit code 2.
PHPUnit (Symfony NEXT 8.2) (PHP 8.5)
Process completed with exit code 1.
Behat (Symfony 7.4) (PHP 8.5)
Process completed with exit code 255.
PHP-CS-Fixer (PHP 8.5)
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/checkout@v4. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
PHPUnit (Symfony NEXT 8.2) (PHP 8.5)
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/cache@v4, actions/checkout@v4, actions/upload-artifact@v4. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
PHPUnit (Symfony ^7.4) (PHP 8.5) (lowest dependencies)
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/cache@v4, actions/checkout@v4, actions/upload-artifact@v4. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
PHPUnit (Symfony 8.1) (PHP 8.5)
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/cache@v4, actions/checkout@v4, actions/upload-artifact@v4. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
PHPUnit (Symfony 7.4) (PHP 8.5)
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/cache@v4, actions/checkout@v4, actions/upload-artifact@v4, codecov/codecov-action@v4. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
PHPUnit (Symfony 7.4) (PHP 8.5)
No files were found with the provided path: infection.log. No artifacts will be uploaded.
PHPUnit (Symfony 7.4) (PHP 8.5): src/DataCollector/CwaDataCollector.php#L145
Escaped Mutant for Mutator "CastInt": @@ @@ } public function getPublishableQueryCount(): int { - return (int) ($this->data['publishable_query_count'] ?? 0); + return $this->data['publishable_query_count'] ?? 0; } /** @return list<array{property: string, resolvedClass: string|null, skipReason: string|null}> */ public function getPageDataResolutions(): array
PHPUnit (Symfony 7.4) (PHP 8.5): src/DataCollector/CwaDataCollector.php#L134
Escaped Mutant for Mutator "CastInt": @@ @@ } public function getPublishedTopicsCount(): int { - return (int) ($this->data['published_topics_count'] ?? 0); + return $this->data['published_topics_count'] ?? 0; } /** @return list<array{class: string, mode: string, queryType: string}> */ public function getPublishableQueries(): array
PHPUnit (Symfony 7.4) (PHP 8.5): src/DataCollector/CwaDataCollector.php#L123
Escaped Mutant for Mutator "CastBool": @@ @@ } public function isPageDataFound(): bool { - return (bool) ($this->data['page_data_found'] ?? false); + return $this->data['page_data_found'] ?? false; } /** @return list<string> */ public function getPublishedTopics(): array
PHPUnit (Symfony 7.4) (PHP 8.5): src/DataCollector/CwaDataCollector.php#L108
Escaped Mutant for Mutator "CastBool": @@ @@ } public function isJwtCookieCleared(): bool { - return (bool) ($this->data['jwt_cookie_cleared'] ?? false); + return $this->data['jwt_cookie_cleared'] ?? false; } public function getResolvedPath(): ?string {
PHPUnit (Symfony 7.4) (PHP 8.5): src/DataCollector/CwaDataCollector.php#L103
Escaped Mutant for Mutator "CastBool": @@ @@ } public function isJwtRefreshIssued(): bool { - return (bool) ($this->data['jwt_refresh_issued'] ?? false); + return $this->data['jwt_refresh_issued'] ?? false; } public function isJwtCookieCleared(): bool {
PHPUnit (Symfony 7.4) (PHP 8.5): src/DataCollector/CwaDataCollector.php#L93
Escaped Mutant for Mutator "CastBool": @@ @@ // ----------------------------------------------------------------------- public function isJwtCookiePresent(): bool { - return (bool) ($this->data['jwt_cookie_present'] ?? false); + return $this->data['jwt_cookie_present'] ?? false; } public function getJwtCookieName(): ?string {
PHPUnit (Symfony 7.4) (PHP 8.5): src/ApiPlatform/Metadata/Resource/RoutingPrefixResourceMetadataCollectionFactory.php#L77
Escaped Mutant for Mutator "SpreadAssignment": @@ @@ * @var Operation $oldOperation */ foreach ($oldOperations as $key => $oldOperation) { - $subRoutePrefixParts = [...$routePrefixParts]; + $subRoutePrefixParts = $routePrefixParts; if ($currentRoutePrefix = $oldOperation->getRoutePrefix()) { $subRoutePrefixParts[] = trim($currentRoutePrefix, '/'); $subRoutePrefix = '/' . implode('/', $subRoutePrefixParts);
PHPUnit (Symfony 7.4) (PHP 8.5): src/ApiPlatform/Metadata/Resource/RoutingPrefixResourceMetadataCollectionFactory.php#L77
Escaped Mutant for Mutator "SpreadOneItem": @@ @@ * @var Operation $oldOperation */ foreach ($oldOperations as $key => $oldOperation) { - $subRoutePrefixParts = [...$routePrefixParts]; + $subRoutePrefixParts = [[...$routePrefixParts][0]]; if ($currentRoutePrefix = $oldOperation->getRoutePrefix()) { $subRoutePrefixParts[] = trim($currentRoutePrefix, '/'); $subRoutePrefix = '/' . implode('/', $subRoutePrefixParts);
PHPUnit (Symfony 7.4) (PHP 8.5): src/ApiPlatform/Metadata/Resource/RoutingPrefixResourceMetadataCollectionFactory.php#L64
Escaped Mutant for Mutator "SpreadAssignment": @@ @@ $resources = []; /** @var ApiResource $resourceMetadatum */ foreach ($resourceMetadata as $i => $resourceMetadatum) { - $finalRoutePrefixParts = [...$routePrefixParts]; + $finalRoutePrefixParts = $routePrefixParts; if ($currentRoutePrefix = $resourceMetadatum->getRoutePrefix()) { $finalRoutePrefixParts[] = trim($currentRoutePrefix, '/'); }
PHPUnit (Symfony 7.4) (PHP 8.5): src/ApiPlatform/Metadata/Resource/RoutingPrefixResourceMetadataCollectionFactory.php#L64
Escaped Mutant for Mutator "SpreadOneItem": @@ @@ $resources = []; /** @var ApiResource $resourceMetadatum */ foreach ($resourceMetadata as $i => $resourceMetadatum) { - $finalRoutePrefixParts = [...$routePrefixParts]; + $finalRoutePrefixParts = [[...$routePrefixParts][0]]; if ($currentRoutePrefix = $resourceMetadatum->getRoutePrefix()) { $finalRoutePrefixParts[] = trim($currentRoutePrefix, '/'); }
Behat (Symfony ^7.4) (PHP 8.5) (lowest dependencies)
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/cache@v4, actions/checkout@v4, actions/upload-artifact@v4. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
Behat (Symfony NEXT 8.2) (PHP 8.5)
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/cache@v4, actions/checkout@v4, actions/upload-artifact@v4. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
Behat (Symfony 8.1) (PHP 8.5)
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/cache@v4, actions/checkout@v4, actions/upload-artifact@v4. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
Behat (Symfony 7.4) (PHP 8.5)
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/cache@v4, actions/checkout@v4, actions/upload-artifact@v4, codecov/codecov-action@v4. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/

Artifacts

Produced during runtime
Name Size Digest
behat-logs-php8.5-lowest-deps
8.32 KB
sha256:2c100c05fb8ae42e2af64b2d39f1346e31d3c79fd8ad009943f5b886e4f25353
behat-logs-php8.5-symfony7.4
11.4 KB
sha256:5433e7e3a0fb83028dd0d072b560b96dc515d289d316c16cb8b87c0c6d0ea6f4
behat-logs-php8.5-symfony8.1
11.3 KB
sha256:0fe102e4cea3a86c8d9684771950e8cdd4c3009bc02560c6dff88cf1344f57cf
behat-logs-php8.5-symfony8.2
11.3 KB
sha256:a10eb698c77ef218baaaa0f47624e7871cdee9e5b5b3c2cd3fa203915ae3d04d
phpunit-logs-php8.5-lowest-deps
13.6 KB
sha256:5077c98da2d18ea5305206ed7e14d9485daaa72733670962eed81683af78af97
phpunit-logs-php8.5-symfony7.4
846 KB
sha256:11e48e704da601a38bf2470f65a1459f67f91318f68c0d2e23be745c953c9947
phpunit-logs-php8.5-symfony8.1
13.6 KB
sha256:5896ff722b06bb415b908534ed48687fe447e1c45d9a732f0bb18b1a23b3bd1f
phpunit-logs-php8.5-symfony8.2
13.9 KB
sha256:0571118ff6bd578a2765843da046b75ea3025e8c043e06eef730cf2526bf537e