Remove queuable

This commit is contained in:
David Bomba 2021-02-11 23:58:36 +11:00
parent f89091d6ef
commit b274d41e40
13 changed files with 15 additions and 15 deletions

View File

@ -23,7 +23,7 @@ use Illuminate\Queue\SerializesModels;
class EntitySentNotification extends Notification implements ShouldQueue class EntitySentNotification extends Notification implements ShouldQueue
{ {
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; //use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
/** /**
* Create a new notification instance. * Create a new notification instance.

View File

@ -23,7 +23,7 @@ use Illuminate\Queue\SerializesModels;
class EntityViewedNotification extends Notification implements ShouldQueue class EntityViewedNotification extends Notification implements ShouldQueue
{ {
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; //use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
/** /**
* Create a new notification instance. * Create a new notification instance.

View File

@ -23,7 +23,7 @@ use Illuminate\Queue\SerializesModels;
class InvoiceSentNotification extends Notification implements ShouldQueue class InvoiceSentNotification extends Notification implements ShouldQueue
{ {
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; //use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
/** /**
* Create a new notification instance. * Create a new notification instance.

View File

@ -23,7 +23,7 @@ use Illuminate\Queue\SerializesModels;
class InvoiceViewedNotification extends Notification implements ShouldQueue class InvoiceViewedNotification extends Notification implements ShouldQueue
{ {
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; //use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
/** /**
* Create a new notification instance. * Create a new notification instance.

View File

@ -23,7 +23,7 @@ use Illuminate\Queue\SerializesModels;
class NewPartialPaymentNotification extends Notification implements ShouldQueue class NewPartialPaymentNotification extends Notification implements ShouldQueue
{ {
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; // use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
/** /**
* Create a new notification instance. * Create a new notification instance.

View File

@ -23,7 +23,7 @@ use Illuminate\Queue\SerializesModels;
class NewPaymentNotification extends Notification implements ShouldQueue class NewPaymentNotification extends Notification implements ShouldQueue
{ {
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; // use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
/** /**
* Create a new notification instance. * Create a new notification instance.

View File

@ -20,7 +20,7 @@ use Illuminate\Notifications\Notification;
class BaseNotification extends Notification implements ShouldQueue class BaseNotification extends Notification implements ShouldQueue
{ {
use Queueable; // use Queueable;
use MakesInvoiceHtml; use MakesInvoiceHtml;
/** /**

View File

@ -24,7 +24,7 @@ use Illuminate\Support\Facades\Mail;
class ClientContactRequestCancellation extends Notification implements ShouldQueue class ClientContactRequestCancellation extends Notification implements ShouldQueue
{ {
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; // use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
/** /**
* Create a new notification instance. * Create a new notification instance.

View File

@ -21,7 +21,7 @@ use Illuminate\Queue\SerializesModels;
class ClientContactResetPassword extends Notification class ClientContactResetPassword extends Notification
{ {
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; // use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
/** /**
* The password reset token. * The password reset token.
* *

View File

@ -21,7 +21,7 @@ use Illuminate\Queue\SerializesModels;
class GmailTestNotification extends Notification implements ShouldQueue class GmailTestNotification extends Notification implements ShouldQueue
{ {
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; // use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
/** /**
* Create a new notification instance. * Create a new notification instance.

View File

@ -21,7 +21,7 @@ use Illuminate\Queue\SerializesModels;
class VerifyUser extends Notification implements ShouldQueue class VerifyUser extends Notification implements ShouldQueue
{ {
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; // use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
/** /**
* Create a new notification instance. * Create a new notification instance.

View File

@ -8,7 +8,7 @@ use Illuminate\Notifications\Notification;
class ResetPasswordNotification extends Notification class ResetPasswordNotification extends Notification
{ {
use Queueable; // use Queueable;
public $token; public $token;

View File

@ -23,9 +23,9 @@ use Illuminate\Queue\SerializesModels;
class SendGenericNotification extends BaseNotification implements ShouldQueue class SendGenericNotification extends BaseNotification implements ShouldQueue
{ {
use Queueable; // use Queueable;
use Dispatchable; // use Dispatchable;
use SerializesModels; // use SerializesModels;
/** /**
* Create a new notification instance. * Create a new notification instance.