docs: add application screenshot to README - #80
Merged
Merged
Annotations
11 warnings
|
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809, actions/upload-artifact@v4. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
src/Cli/Banner.php#L75
Escaped Mutant for Mutator "ConcatOperandRemoval":
@@ @@
}
private static function renderTagline(OutputInterface $output, string $version): void
{
- $bannerWidth = mb_strlen(self::WORK_LINES[0] . self::SEPARATOR_LINES[0] . self::REPORTER_LINES[0]);
+ $bannerWidth = mb_strlen(self::SEPARATOR_LINES[0] . self::REPORTER_LINES[0]);
$repoUrl = 'https://' . self::REPO_URL;
$ghLink = self::terminalLink('GitHub', $repoUrl);
$starLink = self::terminalLink('⭐ Please star us if you find it useful!', $repoUrl);
|
|
src/Cli/Banner.php#L75
Escaped Mutant for Mutator "IncrementInteger":
@@ @@
}
private static function renderTagline(OutputInterface $output, string $version): void
{
- $bannerWidth = mb_strlen(self::WORK_LINES[0] . self::SEPARATOR_LINES[0] . self::REPORTER_LINES[0]);
+ $bannerWidth = mb_strlen(self::WORK_LINES[0] . self::SEPARATOR_LINES[0] . self::REPORTER_LINES[1]);
$repoUrl = 'https://' . self::REPO_URL;
$ghLink = self::terminalLink('GitHub', $repoUrl);
$starLink = self::terminalLink('⭐ Please star us if you find it useful!', $repoUrl);
|
|
src/Cli/Banner.php#L75
Escaped Mutant for Mutator "IncrementInteger":
@@ @@
}
private static function renderTagline(OutputInterface $output, string $version): void
{
- $bannerWidth = mb_strlen(self::WORK_LINES[0] . self::SEPARATOR_LINES[0] . self::REPORTER_LINES[0]);
+ $bannerWidth = mb_strlen(self::WORK_LINES[0] . self::SEPARATOR_LINES[1] . self::REPORTER_LINES[0]);
$repoUrl = 'https://' . self::REPO_URL;
$ghLink = self::terminalLink('GitHub', $repoUrl);
$starLink = self::terminalLink('⭐ Please star us if you find it useful!', $repoUrl);
|
|
src/Cli/Banner.php#L75
Escaped Mutant for Mutator "IncrementInteger":
@@ @@
}
private static function renderTagline(OutputInterface $output, string $version): void
{
- $bannerWidth = mb_strlen(self::WORK_LINES[0] . self::SEPARATOR_LINES[0] . self::REPORTER_LINES[0]);
+ $bannerWidth = mb_strlen(self::WORK_LINES[1] . self::SEPARATOR_LINES[0] . self::REPORTER_LINES[0]);
$repoUrl = 'https://' . self::REPO_URL;
$ghLink = self::terminalLink('GitHub', $repoUrl);
$starLink = self::terminalLink('⭐ Please star us if you find it useful!', $repoUrl);
|
|
src/Cli/Banner.php#L75
Escaped Mutant for Mutator "Concat":
@@ @@
}
private static function renderTagline(OutputInterface $output, string $version): void
{
- $bannerWidth = mb_strlen(self::WORK_LINES[0] . self::SEPARATOR_LINES[0] . self::REPORTER_LINES[0]);
+ $bannerWidth = mb_strlen(self::SEPARATOR_LINES[0] . self::WORK_LINES[0] . self::REPORTER_LINES[0]);
$repoUrl = 'https://' . self::REPO_URL;
$ghLink = self::terminalLink('GitHub', $repoUrl);
$starLink = self::terminalLink('⭐ Please star us if you find it useful!', $repoUrl);
|
|
src/Cli/Banner.php#L52
Escaped Mutant for Mutator "ConcatOperandRemoval":
@@ @@
$line = self::colorize(self::WORK_LINES[$row], self::WORK_START_RGB, self::WORK_END_RGB);
$line .= "\x1b[0m" . self::SEPARATOR_LINES[$row];
$line .= self::colorize(self::REPORTER_LINES[$row], self::REPORTER_START_RGB, self::REPORTER_END_RGB);
- $output->writeln($line . "\x1b[0m");
+ $output->writeln($line);
}
self::renderTagline($output, $version);
}
|
|
src/Cli/Banner.php#L52
Escaped Mutant for Mutator "Concat":
@@ @@
$line = self::colorize(self::WORK_LINES[$row], self::WORK_START_RGB, self::WORK_END_RGB);
$line .= "\x1b[0m" . self::SEPARATOR_LINES[$row];
$line .= self::colorize(self::REPORTER_LINES[$row], self::REPORTER_START_RGB, self::REPORTER_END_RGB);
- $output->writeln($line . "\x1b[0m");
+ $output->writeln("\x1b[0m" . $line);
}
self::renderTagline($output, $version);
}
|
|
src/Cli/Banner.php#L45
Escaped Mutant for Mutator "ConcatOperandRemoval":
@@ @@
$output->writeln('');
for ($row = 0; $row < count(self::WORK_LINES); $row++) {
$line = self::colorize(self::WORK_LINES[$row], self::WORK_START_RGB, self::WORK_END_RGB);
- $line .= "\x1b[0m" . self::SEPARATOR_LINES[$row];
+ $line .= self::SEPARATOR_LINES[$row];
$line .= self::colorize(self::REPORTER_LINES[$row], self::REPORTER_START_RGB, self::REPORTER_END_RGB);
$output->writeln($line . "\x1b[0m");
}
|
|
src/Cli/Banner.php#L45
Escaped Mutant for Mutator "Concat":
@@ @@
$output->writeln('');
for ($row = 0; $row < count(self::WORK_LINES); $row++) {
$line = self::colorize(self::WORK_LINES[$row], self::WORK_START_RGB, self::WORK_END_RGB);
- $line .= "\x1b[0m" . self::SEPARATOR_LINES[$row];
+ $line .= self::SEPARATOR_LINES[$row] . "\x1b[0m";
$line .= self::colorize(self::REPORTER_LINES[$row], self::REPORTER_START_RGB, self::REPORTER_END_RGB);
$output->writeln($line . "\x1b[0m");
}
|
|
src/Cli/Application.php#L18
Escaped Mutant for Mutator "ReturnRemoval":
@@ @@
{
if (true === $input->hasParameterOption(['--version', '-V'], true)) {
Banner::render($output, $this->getVersion());
- return 0;
+
}
return parent::doRun($input, $output);
}
}
|
The logs for this run have expired and are no longer available.
Loading