Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/Runner.php
Original file line number Diff line number Diff line change
Expand Up @@ -410,11 +410,17 @@ private function run()
// If verbosity is too high, turn off parallelism so the
// 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.";
}
$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.";
}
$this->config->parallel = 1;
}

Expand Down