Skip to content

Commit

Permalink
Add Queueable, SerializesModels to all notification events (#24368)
Browse files Browse the repository at this point in the history
Refs #24350
  • Loading branch information
Adam Campbell authored and taylorotwell committed May 30, 2018
1 parent 1ec69a8 commit 3b7a244
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Illuminate/Notifications/Events/NotificationFailed.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@

namespace Illuminate\Notifications\Events;

use Illuminate\Bus\Queueable;
use Illuminate\Queue\SerializesModels;

class NotificationFailed
{
use Queueable, SerializesModels;

/**
* The notifiable entity who received the notification.
*
Expand Down
5 changes: 5 additions & 0 deletions src/Illuminate/Notifications/Events/NotificationSending.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@

namespace Illuminate\Notifications\Events;

use Illuminate\Bus\Queueable;
use Illuminate\Queue\SerializesModels;

class NotificationSending
{
use Queueable, SerializesModels;

/**
* The notifiable entity who received the notification.
*
Expand Down
5 changes: 5 additions & 0 deletions src/Illuminate/Notifications/Events/NotificationSent.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@

namespace Illuminate\Notifications\Events;

use Illuminate\Bus\Queueable;
use Illuminate\Queue\SerializesModels;

class NotificationSent
{
use Queueable, SerializesModels;

/**
* The notifiable entity who received the notification.
*
Expand Down

0 comments on commit 3b7a244

Please sign in to comment.