From 59ef5bff290195445925dc89a160782485bfc425 Mon Sep 17 00:00:00 2001 From: Mohamed Said Date: Thu, 2 Feb 2017 17:55:52 +0200 Subject: [PATCH] fix listen command options --- src/Illuminate/Queue/Console/ListenCommand.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Illuminate/Queue/Console/ListenCommand.php b/src/Illuminate/Queue/Console/ListenCommand.php index 0f2d913b6eda..3d6d1b0edc73 100755 --- a/src/Illuminate/Queue/Console/ListenCommand.php +++ b/src/Illuminate/Queue/Console/ListenCommand.php @@ -94,7 +94,8 @@ protected function gatherOptions() return new ListenerOptions( $this->option('env'), $this->option('delay'), $this->option('memory'), $this->option('timeout'), - $this->option('tries'), $this->option('force') + $this->option('sleep'), $this->option('tries'), + $this->option('force') ); }