From 80bb6fd3b00c14620d4bfe72092e1c56b722cb01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Duli=C3=A7i?= Date: Wed, 30 Jun 2021 17:11:46 +0300 Subject: [PATCH] fixed listener stub --- app/Console/Stubs/Modules/listener-queued.stub | 10 ---------- app/Console/Stubs/Modules/listener.stub | 12 ------------ 2 files changed, 22 deletions(-) diff --git a/app/Console/Stubs/Modules/listener-queued.stub b/app/Console/Stubs/Modules/listener-queued.stub index f60ddf7a3..caf2d38b4 100644 --- a/app/Console/Stubs/Modules/listener-queued.stub +++ b/app/Console/Stubs/Modules/listener-queued.stub @@ -10,16 +10,6 @@ class $CLASS$ implements ShouldQueue { use InteractsWithQueue; - /** - * Create the event listener. - * - * @return void - */ - public function __construct() - { - // - } - /** * Handle the event. * diff --git a/app/Console/Stubs/Modules/listener.stub b/app/Console/Stubs/Modules/listener.stub index d52751663..19b15acbc 100644 --- a/app/Console/Stubs/Modules/listener.stub +++ b/app/Console/Stubs/Modules/listener.stub @@ -3,21 +3,9 @@ namespace $NAMESPACE$; use $EVENTNAME$; -use Illuminate\Queue\InteractsWithQueue; -use Illuminate\Contracts\Queue\ShouldQueue; class $CLASS$ { - /** - * Create the event listener. - * - * @return void - */ - public function __construct() - { - // - } - /** * Handle the event. *