]> BookStack Code Mirror - bookstack/blobdiff - app/Notifications/ConfirmEmail.php
Added migration file.
[bookstack] / app / Notifications / ConfirmEmail.php
index 64d9bb9acb6494ebf3c0db1b6e884e34b9d86d99..27ac89c329c3f09e8d784b047267e1b3b1afda44 100644 (file)
@@ -2,12 +2,16 @@
 
 namespace BookStack\Notifications;
 
+use Illuminate\Bus\Queueable;
 use Illuminate\Notifications\Notification;
+use Illuminate\Contracts\Queue\ShouldQueue;
 use Illuminate\Notifications\Messages\MailMessage;
 
-class ConfirmEmail extends Notification
+class ConfirmEmail extends Notification implements ShouldQueue
 {
 
+    use Queueable;
+    
     public $token;
 
     /**