Skip to content

Fix docs

Fix docs #759

Triggered via pull request May 11, 2024 13:17
Status Success
Total duration 5m 47s
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#L60
Escaped Mutant for Mutator "IncrementInteger": --- Original +++ New @@ @@ $io->writeln('Source directory: ' . $settings->path() . '/' . $settings->options()->sourceDirectory()); $io->section('Configuration groups'); $this->writeConfiguration($io, $settings->packageConfiguration()); - return 0; + return 1; } private function rootPackage(Composer $composer, SymfonyStyle $io) : int {
mutation / PHP 8.2-ubuntu-latest: src/Command/InfoCommand.php#L84
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) ? '<fg=green>' . $mergePlanFilePath . '</>' : $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#L127
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ } } } - return 0; + return -1; } /** * @psalm-param array<string, string|string[]> $configuration
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#L163
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ $io->write($prefix . ' - ' . (Options::isVariable($item) ? '<fg=green>' . $item . '</>' : $item)); } } - $io->newLine(); + } }
mutation / PHP 8.2-ubuntu-latest: src/Command/RebuildCommand.php#L29
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ protected function execute(InputInterface $input, OutputInterface $output) : int { new MergePlanProcess($this->requireComposer()); - return 0; + return -1; } }
mutation / PHP 8.2-ubuntu-latest: src/Command/RebuildCommand.php#L29
Escaped Mutant for Mutator "IncrementInteger": --- Original +++ New @@ @@ protected function execute(InputInterface $input, OutputInterface $output) : int { new MergePlanProcess($this->requireComposer()); - return 0; + return 1; } }
mutation / PHP 8.2-ubuntu-latest: src/Composer/MergePlanProcess.php#L80
Escaped Mutant for Mutator "Continue_": --- Original +++ New @@ @@ if (Options::containsWildcard($file)) { $matches = glob($absoluteFilePath); if (empty($matches)) { - continue; + break; } foreach ($matches as $match) { $this->mergePlan->add($this->normalizePackageFilePath($package, $match, $isVendorOverrideLayer), $packageName, $group);
mutation / PHP 8.2-ubuntu-latest: src/Composer/MergePlanProcess.php#L95
Escaped Mutant for Mutator "Continue_": --- Original +++ New @@ @@ continue; } if ($isOptional && !is_file($absoluteFilePath)) { - continue; + break; } $this->mergePlan->add($this->normalizePackageFilePath($package, $absoluteFilePath, $isVendorOverrideLayer), $packageName, $group); }