Skip to content

Fix docs

Fix docs #757

Triggered via pull request May 4, 2024 13:28
Status Success
Total duration 8m 0s
Artifacts

mutation.yml

on: pull_request
Matrix: mutation / roave-infection
Fit to window
Zoom out
Zoom in

Annotations

10 warnings
mutation / PHP 8.2-ubuntu-latest: src/Command/InfoCommand.php#L36
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ $package = $composer->getRepositoryManager()->getLocalRepository()->findPackage($packageName, '*'); if ($package === null) { $io->error('Package "' . $packageName . '" not found.'); - return 1; + return 0; } return $this->vendorPackage($composer, $package, $io); }
mutation / PHP 8.2-ubuntu-latest: src/Command/InfoCommand.php#L83
Escaped Mutant for Mutator "ConcatOperandRemoval": --- Original +++ New @@ @@ $mergePlanFilePath = $settings->path() . '/' . (empty($sourceDirectory) ? '' : $sourceDirectory . '/') . $options->mergePlanFile(); $io->title('Yii Config — Root Configuration'); $io->section('Options'); - $io->table([], [['Build merge plan', $options->buildMergePlan() ? '<fg=green>yes</>' : '<fg=red>no</>'], ['Merge plan file path', file_exists($mergePlanFilePath) ? '<fg=green>' . $mergePlanFilePath . '</>' : '<fg=red>' . $mergePlanFilePath . ' (not exists)</>'], ['Package types', empty($options->packageTypes()) ? '<fg=red>not set</>' : implode(', ', $options->packageTypes())], ['Source directory', $settings->path() . '/' . $options->sourceDirectory()], ['Vendor override layer packages', empty($options->vendorOverrideLayerPackages()) ? '<fg=gray>not set</>' : implode(', ', $options->vendorOverrideLayerPackages())]]); + $io->table([], [['Build merge plan', $options->buildMergePlan() ? '<fg=green>yes</>' : '<fg=red>no</>'], ['Merge plan file path', file_exists($mergePlanFilePath) ? $mergePlanFilePath . '</>' : '<fg=red>' . $mergePlanFilePath . ' (not exists)</>'], ['Package types', empty($options->packageTypes()) ? '<fg=red>not set</>' : implode(', ', $options->packageTypes())], ['Source directory', $settings->path() . '/' . $options->sourceDirectory()], ['Vendor override layer packages', empty($options->vendorOverrideLayerPackages()) ? '<fg=gray>not set</>' : implode(', ', $options->vendorOverrideLayerPackages())]]); $io->section('Configuration groups'); $this->writeConfiguration($io, $settings->packageConfiguration()); $io->section('Environments');
mutation / PHP 8.2-ubuntu-latest: src/Command/InfoCommand.php#L112
Escaped Mutant for Mutator "IfNegation": --- Original +++ New @@ @@ } else { $isFirst = true; foreach ($environmentsConfiguration as $environment => $groups) { - if ($isFirst) { + if (!$isFirst) { $isFirst = false; } else { $io->newLine();
mutation / PHP 8.2-ubuntu-latest: src/Command/InfoCommand.php#L117
Escaped Mutant for Mutator "ConcatOperandRemoval": --- Original +++ New @@ @@ } else { $io->newLine(); } - $io->write(' <fg=bright-magenta>' . $environment . '</>'); + $io->write(' <fg=bright-magenta>' . $environment); if (empty($groups)) { $io->writeln(' <fg=gray>(empty)</>'); } else {
mutation / PHP 8.2-ubuntu-latest: src/Command/InfoCommand.php#L121
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ if (empty($groups)) { $io->writeln(' <fg=gray>(empty)</>'); } else { - $io->newLine(); + $this->writeConfiguration($io, $groups, offset: 2, addSeparateLine: false); } }
mutation / PHP 8.2-ubuntu-latest: src/Command/InfoCommand.php#L122
Escaped Mutant for Mutator "IncrementInteger": --- Original +++ New @@ @@ $io->writeln(' <fg=gray>(empty)</>'); } else { $io->newLine(); - $this->writeConfiguration($io, $groups, offset: 2, addSeparateLine: false); + $this->writeConfiguration($io, $groups, offset: 3, addSeparateLine: false); } } }
mutation / PHP 8.2-ubuntu-latest: src/Command/InfoCommand.php#L160
Escaped Mutant for Mutator "ConcatOperandRemoval": --- Original +++ New @@ @@ } else { foreach ($items as $item) { $io->newLine(); - $io->write($prefix . ' - ' . (Options::isVariable($item) ? '<fg=green>' . $item . '</>' : $item)); + $io->write(' - ' . (Options::isVariable($item) ? '<fg=green>' . $item . '</>' : $item)); } } $io->newLine(); } }
mutation / PHP 8.2-ubuntu-latest: src/Command/InfoCommand.php#L160
Escaped Mutant for Mutator "Concat": --- Original +++ New @@ @@ } else { foreach ($items as $item) { $io->newLine(); - $io->write($prefix . ' - ' . (Options::isVariable($item) ? '<fg=green>' . $item . '</>' : $item)); + $io->write($prefix . ' - ' . (Options::isVariable($item) ? $item . '<fg=green>' . '</>' : $item)); } } $io->newLine(); } }
mutation / PHP 8.2-ubuntu-latest: src/Command/InfoCommand.php#L160
Escaped Mutant for Mutator "ConcatOperandRemoval": --- Original +++ New @@ @@ } else { foreach ($items as $item) { $io->newLine(); - $io->write($prefix . ' - ' . (Options::isVariable($item) ? '<fg=green>' . $item . '</>' : $item)); + $io->write($prefix . ' - ' . (Options::isVariable($item) ? '<fg=green>' . '</>' : $item)); } } $io->newLine(); } }
mutation / PHP 8.2-ubuntu-latest: src/Command/InfoCommand.php#L160
Escaped Mutant for Mutator "ConcatOperandRemoval": --- Original +++ New @@ @@ } else { foreach ($items as $item) { $io->newLine(); - $io->write($prefix . ' - ' . (Options::isVariable($item) ? '<fg=green>' . $item . '</>' : $item)); + $io->write($prefix . ' - ' . (Options::isVariable($item) ? '<fg=green>' . $item : $item)); } } $io->newLine(); } }