diff --git a/app/Notifications/BaseNotification.php b/app/Notifications/BaseNotification.php index 3e23164bc..8e4f5d5c9 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 f9e1b6286..ee69fae9c 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 404b5f22c..c81583038 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 eccacff7b..3f692c009 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 0e29ff879..6319cfcc8 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 01b5d5e37..eff2a8d1e 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;