composer(deps): update symfony/console requirement from ^7.2.0 to ^7.2.1 #1515
Triggered via pull request
December 12, 2024 03:09
Status
Success
Total duration
1h 46m 20s
Artifacts
–
continuous-integration.yml
on: pull_request
Matrix: Validate Project / Check composer dependencies with composer-dependency-analyser
Matrix: Validate Project / Check composer with composer-normalize
Matrix: Validate Project / Check composer dependencies with composer-unused
Matrix: Validate Project / Check with editorconfig-checker
Matrix: Validate Project / Lint PHP
Matrix: Validate Project / Validate markdown files
Matrix: Validate Project / Linting with overtrue/phplint
Matrix: Validate Project / Validate composer
Matrix: Validate Project / Validate yaml
Matrix: Install Project / Install Node dependencies
Matrix: Install Project / Install PHP dependencies
Matrix: Project Analysis / Run eslint
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 / Run prettier
Matrix: Project Analysis / Checks with Rector
Matrix: Project Analysis / Static Code Analysis with PHPStan
Matrix: Project Analysis / Run stylelint
Matrix: UnitTests / Code Coverage with PHPUnit
Matrix: UnitTests / UnitTests with PHPUnit
Matrix: UnitTests / UnitTests with stryker
Matrix: UnitTests / UnitTests with vitest
Unit & Integration Tests Status
0s
Annotations
3 warnings
UnitTests / Code Coverage with PHPUnit (ubuntu-24.04, 8.3, lowest):
src/StreamFormatter.php#L383
Escaped Mutant for Mutator "TrueValue":
@@ @@
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
|
UnitTests / Code Coverage with PHPUnit (ubuntu-24.04, 8.3, lowest):
src/StreamFormatterFactory.php#L55
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)) {
if (array_key_exists('format', $options)) {
|
UnitTests / Code Coverage with PHPUnit (ubuntu-24.04, 8.3, lowest):
src/StreamFormatterFactory.php#L106
Escaped Mutant for Mutator "MethodCallRemoval":
@@ @@
$formatter = new StreamFormatter($output, new Table($output), $format, $tableStyle, $dateFormat, $allowInlineLineBreaks, $includeStacktraces);
$formatter->setMaxNormalizeDepth($maxNormalizeDepth);
$formatter->setMaxNormalizeItemCount($maxNormalizeItemCount);
- $formatter->setJsonPrettyPrint($prettyPrint);
+
return $formatter;
}
}
|