Implements Laravel's queue abilities into the email notification job. Should not affect existing installations that are not using queues as the environment file defaults to `sync`.
namespace BookStack\Notifications;
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;
/**