From a877a3fe603adb77ae93f62dba97f59794f3f4e5 Mon Sep 17 00:00:00 2001 From: bastien-phi Date: Mon, 30 Sep 2019 16:41:19 +0200 Subject: [PATCH] Add InteractsWithQueue to SendQueueNotifications (#30140) --- src/Illuminate/Notifications/SendQueuedNotifications.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Illuminate/Notifications/SendQueuedNotifications.php b/src/Illuminate/Notifications/SendQueuedNotifications.php index fe6139565940..edf79cfd06fb 100644 --- a/src/Illuminate/Notifications/SendQueuedNotifications.php +++ b/src/Illuminate/Notifications/SendQueuedNotifications.php @@ -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.