Skip to content

composer(deps-dev): bump the minor-patch-dependencies group with 4 up… #1047

composer(deps-dev): bump the minor-patch-dependencies group with 4 up…

composer(deps-dev): bump the minor-patch-dependencies group with 4 up… #1047

Status Success
Total duration 4m 45s
Artifacts
This run and associated checks have been archived and are scheduled for deletion. Learn more about checks retention
Matrix: Validate Project / Lint PHP
Matrix: Validate Project / Linting with overtrue/phplint
Matrix: Validate Project / Validate composer
Matrix: Validate Project / Validate yaml
Validate Project  /  Lint & Validate Status
3s
Validate Project / Lint & Validate Status
Matrix: Install Project / Install 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 / Check Rules with PHPMD
Matrix: Project Analysis / Checks with Rector
Matrix: Project Analysis / Static Code Analysis with PHPStan
Project Analysis  /  Status Analytics
0s
Project Analysis / Status Analytics
Matrix: UnitTests with PHPUnit
Matrix: Check composer dependencies
Matrix: Code Coverage with PHPUnit
Unit & Integration Tests Status
1s
Unit & Integration Tests Status
Fit to window
Zoom out
Zoom in

Annotations

3 warnings
Code Coverage with PHPUnit (ubuntu-20.04, 8.1, lowest): src/StreamFormatter.php#L385
Escaped Mutant for Mutator "TrueValue": --- Original +++ New @@ @@ if (is_scalar($data)) { return (string) $data; } - return $this->toJson($data, true); + return $this->toJson($data, false); } /** @throws void */ private function replaceNewlines(string $str) : string
Code Coverage with PHPUnit (ubuntu-20.04, 8.1, lowest): src/StreamFormatterFactory.php#L53
Escaped Mutant for Mutator "FalseValue": --- Original +++ New @@ @@ $allowInlineLineBreaks = false; $maxNormalizeDepth = self::DEFAULT_NORMALIZER_DEPTH; $maxNormalizeItemCount = self::DEFAULT_NORMALIZER_ITEM_COUNT; - $prettyPrint = false; + $prettyPrint = true; $includeStacktraces = false; if (is_array($options)) { if (array_key_exists('format', $options)) {
Code Coverage with PHPUnit (ubuntu-20.04, 8.1, lowest): src/StreamFormatterFactory.php#L112
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ } $formatter->setMaxNormalizeDepth($maxNormalizeDepth); $formatter->setMaxNormalizeItemCount($maxNormalizeItemCount); - $formatter->setJsonPrettyPrint($prettyPrint); + return $formatter; } }