From c6aabf97be038bbff664dc4917a4469e088c3f14 Mon Sep 17 00:00:00 2001 From: Michael Strong Date: Fri, 24 Nov 2017 03:10:23 +1300 Subject: [PATCH] Update docs for queue:retry command (#22179) * Update docs for queue:retry command At the moment its not obvious that you can pass 'all' as an id without looking through the code. * Update RetryCommand.php --- src/Illuminate/Queue/Console/RetryCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Queue/Console/RetryCommand.php b/src/Illuminate/Queue/Console/RetryCommand.php index 095d9342da21..5ea49d53d385 100644 --- a/src/Illuminate/Queue/Console/RetryCommand.php +++ b/src/Illuminate/Queue/Console/RetryCommand.php @@ -12,7 +12,7 @@ class RetryCommand extends Command * * @var string */ - protected $signature = 'queue:retry {id* : The ID of the failed job.}'; + protected $signature = 'queue:retry {id* : The ID of the failed job or "all" to retry all jobs.}'; /** * The console command description.