From fb7e4c11f61e2fa11aa9f8404ca0e0bdc1c65930 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Fri, 12 Feb 2021 00:02:22 +1100 Subject: [PATCH] Remove queuable --- app/Notifications/BaseNotification.php | 2 +- app/Notifications/ClientContactRequestCancellation.php | 2 +- app/Notifications/GmailTestNotification.php | 2 +- app/Notifications/NewAccountCreated.php | 2 +- app/Notifications/Ninja/VerifyUser.php | 2 +- app/Notifications/SendGenericNotification.php | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app/Notifications/BaseNotification.php b/app/Notifications/BaseNotification.php index 3e23164bcda2..8e4f5d5c94bc 100644 --- a/app/Notifications/BaseNotification.php +++ b/app/Notifications/BaseNotification.php @@ -18,7 +18,7 @@ use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Notifications\Messages\MailMessage; use Illuminate\Notifications\Notification; -class BaseNotification extends Notification implements ShouldQueue +class BaseNotification extends Notification { // use Queueable; use MakesInvoiceHtml; diff --git a/app/Notifications/ClientContactRequestCancellation.php b/app/Notifications/ClientContactRequestCancellation.php index f9e1b62863ad..ee69fae9c691 100644 --- a/app/Notifications/ClientContactRequestCancellation.php +++ b/app/Notifications/ClientContactRequestCancellation.php @@ -22,7 +22,7 @@ use Illuminate\Queue\InteractsWithQueue; use Illuminate\Queue\SerializesModels; use Illuminate\Support\Facades\Mail; -class ClientContactRequestCancellation extends Notification implements ShouldQueue +class ClientContactRequestCancellation extends Notification { // use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; diff --git a/app/Notifications/GmailTestNotification.php b/app/Notifications/GmailTestNotification.php index 404b5f22c6ac..c815830389c5 100644 --- a/app/Notifications/GmailTestNotification.php +++ b/app/Notifications/GmailTestNotification.php @@ -19,7 +19,7 @@ use Illuminate\Notifications\Notification; use Illuminate\Queue\InteractsWithQueue; use Illuminate\Queue\SerializesModels; -class GmailTestNotification extends Notification implements ShouldQueue +class GmailTestNotification extends Notification { // use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; diff --git a/app/Notifications/NewAccountCreated.php b/app/Notifications/NewAccountCreated.php index eccacff7baf5..3f692c009a59 100644 --- a/app/Notifications/NewAccountCreated.php +++ b/app/Notifications/NewAccountCreated.php @@ -20,7 +20,7 @@ use Illuminate\Notifications\Notification; use Illuminate\Queue\InteractsWithQueue; use Illuminate\Queue\SerializesModels; -class NewAccountCreated extends Notification implements ShouldQueue +class NewAccountCreated extends Notification { //use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; diff --git a/app/Notifications/Ninja/VerifyUser.php b/app/Notifications/Ninja/VerifyUser.php index 0e29ff879f9c..6319cfcc8033 100644 --- a/app/Notifications/Ninja/VerifyUser.php +++ b/app/Notifications/Ninja/VerifyUser.php @@ -19,7 +19,7 @@ use Illuminate\Notifications\Notification; use Illuminate\Queue\InteractsWithQueue; use Illuminate\Queue\SerializesModels; -class VerifyUser extends Notification implements ShouldQueue +class VerifyUser extends Notification { // use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; diff --git a/app/Notifications/SendGenericNotification.php b/app/Notifications/SendGenericNotification.php index 01b5d5e373f0..eff2a8d1e334 100644 --- a/app/Notifications/SendGenericNotification.php +++ b/app/Notifications/SendGenericNotification.php @@ -21,7 +21,7 @@ use Illuminate\Notifications\Messages\SlackMessage; use Illuminate\Notifications\Notification; use Illuminate\Queue\SerializesModels; -class SendGenericNotification extends BaseNotification implements ShouldQueue +class SendGenericNotification extends BaseNotification { // use Queueable; // use Dispatchable;