Skip to content

Commit

Permalink
Add InteractsWithQueue to SendQueueNotifications (laravel#30140)
Browse files Browse the repository at this point in the history
  • Loading branch information
bastien-phi authored and i-bajrai committed Oct 4, 2019
1 parent 4cc5cce commit a877a3f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Illuminate/Notifications/SendQueuedNotifications.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@

use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;

class SendQueuedNotifications implements ShouldQueue
{
use Queueable, SerializesModels;
use InteractsWithQueue, Queueable, SerializesModels;

/**
* The notifiable entities that should receive the notification.
Expand Down

0 comments on commit a877a3f

Please sign in to comment.