From 5289567773e0a1514a4b0fc13f8afc5ac409ad80 Mon Sep 17 00:00:00 2001 From: IceToast <> Date: Thu, 19 Jan 2023 16:05:56 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=9A=91=EF=B8=8F=20Remove=20queueab?= =?UTF-8?q?le=20from=20Eventhandler=20to=20fix=20execution?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Listeners/CreateInvoice.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/Listeners/CreateInvoice.php b/app/Listeners/CreateInvoice.php index 08d772c0..907b2704 100644 --- a/app/Listeners/CreateInvoice.php +++ b/app/Listeners/CreateInvoice.php @@ -4,10 +4,8 @@ namespace App\Listeners; use App\Events\PaymentEvent; use App\Traits\Invoiceable; -use Illuminate\Contracts\Queue\ShouldQueue; -use Illuminate\Queue\InteractsWithQueue; -class CreateInvoice implements ShouldQueue +class CreateInvoice { use Invoiceable;