composer(deps-dev): Bump ergebnis/php-cs-fixer-config from 6.8.1 to 6.9.0 #2185
Annotations
10 warnings
Run mutation tests with Xdebug and infection/infection:
src/Command/NormalizeCommand.php#L280
Escaped Mutant for Mutator "ArrayItemRemoval":
--- Original
+++ New
@@ @@
if (true === $input->getOption('diff') || true === $input->getOption('dry-run')) {
$io->writeError(\sprintf('<error>%s is not normalized.</error>', $composerFile));
$diff = $this->differ->diff($json->encoded(), $normalized->encoded());
- $io->write(['', '<fg=yellow>---------- begin diff ----------</>', self::formatDiff($diff), '<fg=yellow>----------- end diff -----------</>', '']);
+ $io->write(['<fg=yellow>---------- begin diff ----------</>', self::formatDiff($diff), '<fg=yellow>----------- end diff -----------</>', '']);
}
if (true === $input->getOption('dry-run')) {
return 1;
|
Run mutation tests with Xdebug and infection/infection:
src/Command/NormalizeCommand.php#L310
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
if (true === $input->getOption('no-update-lock') || !$locker->isLocked()) {
return 0;
}
- $io->write('<info>Updating lock file.</info>');
+
$application = new Application();
$application->setAutoExit(false);
return self::updateLockerInWorkingDirectory($application, $input, $output, \dirname($composerFile));
|
Run mutation tests with Xdebug and infection/infection:
src/Command/NormalizeCommand.php#L433
Escaped Mutant for Mutator "GreaterThan":
--- Original
+++ New
@@ @@
if (!\is_int($indentSize)) {
throw new \RuntimeException(\sprintf('Indent size needs to be an integer, got %s instead.', \gettype($indentSize)));
}
- if (1 > $indentSize) {
+ if (1 >= $indentSize) {
throw new \RuntimeException(\sprintf('Indent size needs to be an integer greater than 0, but %d is not.', $indentSize));
}
$indentStyle = $configuration['indent-style'];
|
Run mutation tests with Xdebug and infection/infection:
src/Command/NormalizeCommand.php#L484
Escaped Mutant for Mutator "UnwrapArrayMap":
--- Original
+++ New
@@ @@
private static function formatDiff(string $diff) : string
{
$lines = \explode("\n", $diff);
- $formatted = \array_map(static function (string $line) : string {
- $replaced = \preg_replace(['/^(\\+.*)$/', '/^(-.*)$/'], ['<fg=green>$1</>', '<fg=red>$1</>'], $line);
- if (!\is_string($replaced)) {
- throw Exception\ShouldNotHappen::create();
- }
- return $replaced;
- }, $lines);
+ $formatted = $lines;
return \implode("\n", $formatted);
}
/**
|
Run mutation tests with Xdebug and infection/infection:
src/Command/NormalizeCommand.php#L486
Escaped Mutant for Mutator "ArrayItemRemoval":
--- Original
+++ New
@@ @@
{
$lines = \explode("\n", $diff);
$formatted = \array_map(static function (string $line) : string {
- $replaced = \preg_replace(['/^(\\+.*)$/', '/^(-.*)$/'], ['<fg=green>$1</>', '<fg=red>$1</>'], $line);
+ $replaced = \preg_replace(['/^(-.*)$/'], ['<fg=green>$1</>', '<fg=red>$1</>'], $line);
if (!\is_string($replaced)) {
throw Exception\ShouldNotHappen::create();
}
|
Run mutation tests with Xdebug and infection/infection:
src/Command/NormalizeCommand.php#L523
Escaped Mutant for Mutator "TrueValue":
--- Original
+++ New
@@ @@
*/
private static function updateLockerInWorkingDirectory(Console\Application $application, Console\Input\InputInterface $input, Console\Output\OutputInterface $output, string $workingDirectory) : int
{
- $parameters = ['command' => 'update', '--ignore-platform-reqs' => true, '--lock' => true, '--no-autoloader' => true, '--working-dir' => $workingDirectory];
+ $parameters = ['command' => 'update', '--ignore-platform-reqs' => false, '--lock' => true, '--no-autoloader' => true, '--working-dir' => $workingDirectory];
if ($input->hasParameterOption('--no-ansi')) {
$parameters[] = '--no-ansi';
}
|
Run mutation tests with Xdebug and infection/infection:
src/Command/NormalizeCommand.php#L524
Escaped Mutant for Mutator "TrueValue":
--- Original
+++ New
@@ @@
*/
private static function updateLockerInWorkingDirectory(Console\Application $application, Console\Input\InputInterface $input, Console\Output\OutputInterface $output, string $workingDirectory) : int
{
- $parameters = ['command' => 'update', '--ignore-platform-reqs' => true, '--lock' => true, '--no-autoloader' => true, '--working-dir' => $workingDirectory];
+ $parameters = ['command' => 'update', '--ignore-platform-reqs' => true, '--lock' => false, '--no-autoloader' => true, '--working-dir' => $workingDirectory];
if ($input->hasParameterOption('--no-ansi')) {
$parameters[] = '--no-ansi';
}
|
Run mutation tests with Xdebug and infection/infection:
src/Command/NormalizeCommand.php#L525
Escaped Mutant for Mutator "TrueValue":
--- Original
+++ New
@@ @@
*/
private static function updateLockerInWorkingDirectory(Console\Application $application, Console\Input\InputInterface $input, Console\Output\OutputInterface $output, string $workingDirectory) : int
{
- $parameters = ['command' => 'update', '--ignore-platform-reqs' => true, '--lock' => true, '--no-autoloader' => true, '--working-dir' => $workingDirectory];
+ $parameters = ['command' => 'update', '--ignore-platform-reqs' => true, '--lock' => true, '--no-autoloader' => false, '--working-dir' => $workingDirectory];
if ($input->hasParameterOption('--no-ansi')) {
$parameters[] = '--no-ansi';
}
|
Run mutation tests with Xdebug and infection/infection:
src/Command/NormalizeCommand.php#L529
Escaped Mutant for Mutator "IfNegation":
--- Original
+++ New
@@ @@
private static function updateLockerInWorkingDirectory(Console\Application $application, Console\Input\InputInterface $input, Console\Output\OutputInterface $output, string $workingDirectory) : int
{
$parameters = ['command' => 'update', '--ignore-platform-reqs' => true, '--lock' => true, '--no-autoloader' => true, '--working-dir' => $workingDirectory];
- if ($input->hasParameterOption('--no-ansi')) {
+ if (!$input->hasParameterOption('--no-ansi')) {
$parameters[] = '--no-ansi';
}
if ($input->hasParameterOption('--no-plugins')) {
|
Run mutation tests with Xdebug and infection/infection:
src/Command/NormalizeCommand.php#L533
Escaped Mutant for Mutator "IfNegation":
--- Original
+++ New
@@ @@
if ($input->hasParameterOption('--no-ansi')) {
$parameters[] = '--no-ansi';
}
- if ($input->hasParameterOption('--no-plugins')) {
+ if (!$input->hasParameterOption('--no-plugins')) {
$parameters[] = '--no-plugins';
}
if ($input->hasParameterOption('--no-scripts')) {
|
The logs for this run have expired and are no longer available.
Loading