Skip to content

Commit

Permalink
Update Runner.php
Browse files Browse the repository at this point in the history
  • Loading branch information
Luc45 authored Apr 1, 2024
1 parent 100cebd commit 7841799
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Runner.php
Original file line number Diff line number Diff line change
Expand Up @@ -426,15 +426,15 @@ private function run()
// debug output is clean.
if (PHP_CODESNIFFER_VERBOSITY > 1) {
if ($this->config->parallel > 1) {
echo "Parallel processing disabled for clearer output at higher verbosity levels.";
echo "Parallel processing disabled for clearer output at higher verbosity levels.".PHP_EOL;
}
$this->config->parallel = 1;
}

// If the PCNTL extension isn't installed, we can't fork.
if (function_exists('pcntl_fork') === false) {
if ($this->config->parallel > 1) {
echo "Parallel processing requires the 'pcntl' PHP extension. Falling back to single-thread execution.";
echo "Parallel processing requires the 'pcntl' PHP extension. Falling back to single-thread execution.".PHP_EOL;
}
$this->config->parallel = 1;
}
Expand Down

0 comments on commit 7841799

Please sign in to comment.