diff --git a/src/Illuminate/Queue/Console/RetryCommand.php b/src/Illuminate/Queue/Console/RetryCommand.php index 13817c2b7487..a1452dbf2c40 100644 --- a/src/Illuminate/Queue/Console/RetryCommand.php +++ b/src/Illuminate/Queue/Console/RetryCommand.php @@ -66,7 +66,7 @@ protected function getJobIds() if ($queue = $this->option('queue')) { $ids = collect($this->laravel['queue.failer']->all())->where('queue', $queue)->pluck('id')->toArray(); - if (count($ids)===0) { + if (count($ids) === 0) { $this->error("Unable to find failed jobs in a queue named [{$queue}]."); }