From fa29986c7bce23b964ee7b24ec251029d0405adb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Valentin=20Iva=C5=9Fcu?= Date: Fri, 1 Sep 2017 11:44:03 +0300 Subject: [PATCH] Support Laravel 5.5 Changed fire() to handle() method --- src/Console/AsyncCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Console/AsyncCommand.php b/src/Console/AsyncCommand.php index 05032cb..8604904 100644 --- a/src/Console/AsyncCommand.php +++ b/src/Console/AsyncCommand.php @@ -51,7 +51,7 @@ public function __construct(Worker $worker) * @param WorkerOptions $options * @return void */ - public function fire(WorkerOptions $options) + public function handle(WorkerOptions $options) { $id = $this->argument('id'); $connection = $this->argument('connection');