We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f49473 commit e551815Copy full SHA for e551815
src/Parallel/Scheduler.php
@@ -66,9 +66,9 @@ public function print(Output $output): void
66
67
$output->writeLineFormatted('<info>Parallel processing scheduler:</info>');
68
$output->writeLineFormatted(sprintf(
69
- '# of detected CPU %s: %s%d',
+ '# of detected CPU %s: %s%d',
70
$cpuCores === 1 ? 'core' : 'cores',
71
- $cpuCores === 1 ? '' : ' ',
+ $cpuCores === 1 ? ' ' : '',
72
$cpuCores,
73
));
74
$output->writeLineFormatted(sprintf('# of analysed files: %d', $filesCount));
0 commit comments