This repository was archived by the owner on Aug 21, 2026. It is now read-only.
fix issues #2663
continuous-integration.yml
on: push
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
Matrix: Install Project / Install PHP dependencies
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
Matrix: UnitTests / Code Coverage with PHPUnit
Matrix: UnitTests / UnitTests with PHPUnit
CI Status
3s
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
|