Docs folder standardization and other fixes #744
Annotations
10 warnings
mutation / PHP 8.2-ubuntu-latest:
src/Command/CopyCommand.php#L63
Escaped Mutant for Mutator "DecrementInteger":
--- Original
+++ New
@@ @@
$filename = str_replace('/', '-', $file->filename());
$filesystem->copy($file->absolutePath(), "{$targetPath}/{$prefix}-{$filename}");
}
- return 0;
+ return -1;
}
/**
* @param PackageFile[] $packageFiles
|
mutation / PHP 8.2-ubuntu-latest:
src/Command/InfoCommand.php#L36
Escaped Mutant for Mutator "IntegerNegation":
--- Original
+++ New
@@ @@
$package = $composer->getRepositoryManager()->getLocalRepository()->findPackage($packageName, '*');
if ($package === null) {
$io->error('Package "' . $packageName . '" not found.');
- return 1;
+ return -1;
}
return $this->vendorPackage($composer, $package, $io);
}
|
mutation / PHP 8.2-ubuntu-latest:
src/Command/InfoCommand.php#L48
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
{
$settings = ConfigSettings::forVendorPackage($composer, $package);
if (empty($settings->packageConfiguration())) {
- $io->writeln('');
+
$io->writeln('<fg=gray>Configuration don\'t found in package "' . $package->getName() . '".</>');
return 0;
}
|
mutation / PHP 8.2-ubuntu-latest:
src/Command/InfoCommand.php#L82
Escaped Mutant for Mutator "Ternary":
--- 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=red>' . $mergePlanFilePath . ' (not exists)</>' : '<fg=green>' . $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#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($environment . '</>');
if (empty($groups)) {
$io->writeln(' <fg=gray>(empty)</>');
} else {
|
mutation / PHP 8.2-ubuntu-latest:
src/Command/InfoCommand.php#L117
Escaped Mutant for Mutator "Concat":
--- 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#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#L137
Escaped Mutant for Mutator "TrueValue":
--- 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 = 1, bool $addSeparateLine = false) : void
{
foreach ($configuration as $group => $values) {
$this->writeGroup($io, $group, $values, $offset);
|
mutation / PHP 8.2-ubuntu-latest:
src/Command/InfoCommand.php#L142
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
foreach ($configuration as $group => $values) {
$this->writeGroup($io, $group, $values, $offset);
if ($addSeparateLine) {
- $io->newLine();
+
}
}
}
|