Docs folder standardization and other fixes #743
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#L36
Escaped Mutant for Mutator "IncrementInteger":
--- Original
+++ New
@@ @@
$package = $composer->getRepositoryManager()->getLocalRepository()->findPackage($packageName, '*');
if ($package === null) {
$io->error('Package "' . $packageName . '" not found.');
- return 1;
+ return 2;
}
return $this->vendorPackage($composer, $package, $io);
}
|
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 . '</>' : '<fg=red>' . ' (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#L84
Escaped Mutant for Mutator "Concat":
--- 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 . '</>' : '<fg=red>' . ' (not exists)</>' . $mergePlanFilePath], ['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#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#L122
Escaped Mutant for Mutator "FalseValue":
--- Original
+++ New
@@ @@
$io->writeln(' <fg=gray>(empty)</>');
} else {
$io->newLine();
- $this->writeConfiguration($io, $groups, offset: 2, addSeparateLine: false);
+ $this->writeConfiguration($io, $groups, offset: 2, addSeparateLine: true);
}
}
}
|
mutation / PHP 8.2-ubuntu-latest:
src/Command/InfoCommand.php#L127
Escaped Mutant for Mutator "IncrementInteger":
--- Original
+++ New
@@ @@
}
}
}
- return 0;
+ return 1;
}
/**
* @psalm-param array<string, string|string[]> $configuration
|
mutation / PHP 8.2-ubuntu-latest:
src/Command/InfoCommand.php#L136
Escaped Mutant for Mutator "DecrementInteger":
--- Original
+++ New
@@ @@
/**
* @psalm-param array<string, string|string[]> $configuration
*/
- private function writeConfiguration(SymfonyStyle $io, array $configuration, int $offset = 1, bool $addSeparateLine = true) : void
+ private function writeConfiguration(SymfonyStyle $io, array $configuration, int $offset = 0, bool $addSeparateLine = true) : void
{
foreach ($configuration as $group => $values) {
$this->writeGroup($io, $group, $values, $offset);
|
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);
}
|
mutation / PHP 8.2-ubuntu-latest:
src/Composer/MergePlanProcess.php#L123
Escaped Mutant for Mutator "Continue_":
--- Original
+++ New
@@ @@
{
foreach ($this->helper->getEnvironmentConfig() as $environment => $groups) {
if ($environment === Options::DEFAULT_ENVIRONMENT) {
- continue;
+ break;
}
if (empty($groups)) {
$this->mergePlan->addEnvironmentWithoutConfigs($environment);
|