Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
Farhad.Zand committed Nov 7, 2023
1 parent a16f43f commit 132c536
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Console/ConsumeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ final class ConsumeCommand extends WorkCommand
public function handle(): int|null
{
$numProcesses = $this->option('num-processes');

for ($i = 0; $i < $numProcesses; $i++) {
$pid = pcntl_fork();

Expand All @@ -57,7 +57,8 @@ public function handle(): int|null
// Handle exit status if needed
}

return 0;;
return 0;
;
}

private function consume(): void
Expand Down

0 comments on commit 132c536

Please sign in to comment.