From f5979b029d9eb2538f3eec2611c42466a98ace10 Mon Sep 17 00:00:00 2001 From: micmania1 Date: Thu, 23 Nov 2017 15:41:43 +1300 Subject: [PATCH 1/2] 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. --- 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..f469612f4fb3 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. From 96ae4a20137a956969725b48b6700f3852400a7f Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 23 Nov 2017 08:10:15 -0600 Subject: [PATCH 2/2] 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 f469612f4fb3..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 or \'all\' to retry all jobs.}'; + protected $signature = 'queue:retry {id* : The ID of the failed job or "all" to retry all jobs.}'; /** * The console command description.