Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
Wirone committed Feb 1, 2024
1 parent e386d65 commit 58a51a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Runner/Runner.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ final class Runner

/**
* @param null|\Traversable<\SplFileInfo> $fileIterator
* @param list<FixerInterface> $fixers
* @param list<FixerInterface> $fixers
*/
public function __construct(
?\Traversable $fileIterator,
Expand Down Expand Up @@ -203,7 +203,7 @@ private function fixParallel(): array

$processesToSpawn = min(
$this->parallelConfig->getMaxProcesses(),
(int)ceil($this->fileCount / $this->parallelConfig->getFilesPerProcess())
(int) ceil($this->fileCount / $this->parallelConfig->getFilesPerProcess())
);

for ($i = 0; $i < $processesToSpawn; ++$i) {
Expand Down

0 comments on commit 58a51a6

Please sign in to comment.