diff --git a/src/Illuminate/Queue/Console/ListenCommand.php b/src/Illuminate/Queue/Console/ListenCommand.php index eb545a1d7234..e7979838c64f 100755 --- a/src/Illuminate/Queue/Console/ListenCommand.php +++ b/src/Illuminate/Queue/Console/ListenCommand.php @@ -24,10 +24,10 @@ class ListenCommand extends Command {--force : Force the worker to run even in maintenance mode} {--memory=128 : The memory limit in megabytes} {--queue= : The queue to listen on} - {--sleep=3 : Number of seconds to sleep when no job is available} - {--rest=0 : Number of seconds to rest between jobs} + {--sleep=3 : The number of seconds to sleep when no job is available} + {--rest=0 : The number of seconds to rest between jobs} {--timeout=60 : The number of seconds a child process can run} - {--tries=1 : Number of times to attempt a job before logging it failed}'; + {--tries=1 : The number of times to attempt a job before logging it failed}'; /** * The console command description. diff --git a/src/Illuminate/Queue/Console/WorkCommand.php b/src/Illuminate/Queue/Console/WorkCommand.php index a13241c88de3..b7bd63db4686 100644 --- a/src/Illuminate/Queue/Console/WorkCommand.php +++ b/src/Illuminate/Queue/Console/WorkCommand.php @@ -43,10 +43,10 @@ class WorkCommand extends Command {--max-time=0 : The maximum number of seconds the worker should run} {--force : Force the worker to run even in maintenance mode} {--memory=128 : The memory limit in megabytes} - {--sleep=3 : Number of seconds to sleep when no job is available} - {--rest=0 : Number of seconds to rest between jobs} + {--sleep=3 : The number of seconds to sleep when no job is available} + {--rest=0 : The number of seconds to rest between jobs} {--timeout=60 : The number of seconds a child process can run} - {--tries=1 : Number of times to attempt a job before logging it failed} + {--tries=1 : The number of times to attempt a job before logging it failed} {--json : Output the queue worker information as JSON}'; /**