Skip to content

Commit e551815

Browse files
committed
Fix verbose output alignment
1 parent 5f49473 commit e551815

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Parallel/Scheduler.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ public function print(Output $output): void
6666

6767
$output->writeLineFormatted('<info>Parallel processing scheduler:</info>');
6868
$output->writeLineFormatted(sprintf(
69-
'# of detected CPU %s: %s%d',
69+
'# of detected CPU %s: %s%d',
7070
$cpuCores === 1 ? 'core' : 'cores',
71-
$cpuCores === 1 ? '' : ' ',
71+
$cpuCores === 1 ? ' ' : '',
7272
$cpuCores,
7373
));
7474
$output->writeLineFormatted(sprintf('# of analysed files: %d', $filesCount));

0 commit comments

Comments
 (0)