From 9ea53170b7a0dce498204919db2d4c48b64b72ee Mon Sep 17 00:00:00 2001 From: edalzell Date: Wed, 15 Dec 2021 12:09:12 -0800 Subject: [PATCH] queue the notifications --- src/Notifications/AbstractAlert.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Notifications/AbstractAlert.php b/src/Notifications/AbstractAlert.php index 65a0c53..12945bf 100644 --- a/src/Notifications/AbstractAlert.php +++ b/src/Notifications/AbstractAlert.php @@ -3,10 +3,11 @@ namespace TransformStudios\Uptime\Notifications; use Illuminate\Bus\Queueable; +use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Notifications\Notification; use Statamic\Support\Arr; -abstract class AbstractAlert extends Notification +abstract class AbstractAlert extends Notification implements ShouldQueue { use Queueable;