芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/www/vendor/laravel/framework/src/Illuminate/Queue/Console/RetryBatchCommand.php
laravel[BatchRepository::class]->find($id = $this->argument('id')); if (! $batch) { $this->error("Unable to find a batch with ID [{$id}]."); return 1; } elseif (empty($batch->failedJobIds)) { $this->error('The given batch does not contain any failed jobs.'); return 1; } foreach ($batch->failedJobIds as $failedJobId) { $this->call('queue:retry', ['id' => $failedJobId]); } } }