Skip to content
This repository was archived by the owner on Aug 21, 2026. It is now read-only.

fix issues

fix issues #2663

Triggered via push July 23, 2026 05:41
Status Success
Total duration 2m 57s
Artifacts
Matrix: Validate Project / Validate markdown files
Matrix: Validate Project / Validate yaml
Matrix: Validate PHP / Check composer dependencies with composer-dependency-analyser
Matrix: Validate PHP / Check composer with composer-normalize
Matrix: Validate PHP / Check with editorconfig-checker
Matrix: Validate PHP / Lint PHP
Matrix: Validate PHP / Linting with overtrue/phplint
Matrix: Validate PHP / Validate composer
Validate Project  /  Lint & Validate Status
2s
Validate Project / Lint & Validate Status
Validate PHP  /  Lint & Validate Status
3s
Validate PHP / Lint & Validate Status
Matrix: Install Project / Install PHP dependencies
Install Project  /  Install Status
3s
Install Project / Install Status
Matrix: Project Analysis / Check Coding Standards with PHP-CS-Fixer
Matrix: Project Analysis / Check Coding Standards with PHPCS
Matrix: Project Analysis / Static Code Analysis with PHPStan
Matrix: Project Analysis / Checks with Rector
Project Analysis  /  Status Analytics
3s
Project Analysis / Status Analytics
Matrix: UnitTests / Code Coverage with PHPUnit
Matrix: UnitTests / UnitTests with PHPUnit
UnitTests  /  finish-code-coverage
3s
UnitTests / finish-code-coverage
UnitTests  /  Unit & Integration Tests Status
3s
UnitTests / Unit & Integration Tests Status
CI Status
3s
CI Status
Fit to window
Zoom out
Zoom in

Annotations

8 warnings
UnitTests / Code Coverage with PHPUnit (ubuntu-latest, 8.3, lowest)
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: codecov/test-results-action@v1. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
UnitTests / Code Coverage with PHPUnit (ubuntu-latest, 8.3, lowest): src/StreamFormatterFactory.php#L104
Escaped Mutant for Mutator "MethodCallRemoval": @@ @@ $formatter->setMaxNormalizeDepth($maxNormalizeDepth); $formatter->setMaxNormalizeItemCount($maxNormalizeItemCount); - $formatter->setJsonPrettyPrint($prettyPrint); + return $formatter; }
UnitTests / Code Coverage with PHPUnit (ubuntu-latest, 8.3, lowest): src/StreamFormatterFactory.php#L53
Escaped Mutant for Mutator "FalseValue": @@ @@ $allowInlineLineBreaks = false; $maxNormalizeDepth = self::DEFAULT_NORMALIZER_DEPTH; $maxNormalizeItemCount = self::DEFAULT_NORMALIZER_ITEM_COUNT; - $prettyPrint = false; + $prettyPrint = true; $includeStacktraces = false; if (is_array($options)) {
UnitTests / Code Coverage with PHPUnit (ubuntu-latest, 8.3, lowest): src/StreamFormatter.php#L385
Escaped Mutant for Mutator "TrueValue": @@ @@ return (string) $data; } - return $this->toJson($data, true); + return $this->toJson($data, false); } /** @throws void */
UnitTests / Code Coverage with PHPUnit (ubuntu-latest, 8.3, lowest): src/StreamFormatter.php#L382
Escaped Mutant for Mutator "ReturnRemoval": @@ @@ } if (is_scalar($data)) { - return (string) $data; + } return $this->toJson($data, true);
UnitTests / Code Coverage with PHPUnit (ubuntu-latest, 8.3, lowest): src/StreamFormatter.php#L370
Escaped Mutant for Mutator "ReturnRemoval": @@ @@ } if ($data === null) { - return 'null'; + } if ($data === true) {
UnitTests / Code Coverage with PHPUnit (ubuntu-latest, 8.3, lowest): src/StreamFormatter.php#L366
Escaped Mutant for Mutator "ReturnRemoval": @@ @@ private function convertToString(mixed $data): string { if (is_string($data)) { - return $data; + } if ($data === null) {
UnitTests / Code Coverage with PHPUnit (ubuntu-latest, 8.3, lowest)
This action is being deprecated in favor of 'codecov-action'. Please update CI accordingly to use 'codecov-action@v5' with 'report_type: test_results'. The 'codecov-action' should and can be run at least once for coverage and once for test results