From 0519a4ecc571c64511d9aef5f9749b253accc4e5 Mon Sep 17 00:00:00 2001 From: Andy Heathershaw Date: Sun, 14 Jul 2019 16:16:35 +0100 Subject: [PATCH] #124: Corrected the base class in the comment replied to mailable. --- app/Mail/PhotoCommentRepliedTo.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/Mail/PhotoCommentRepliedTo.php b/app/Mail/PhotoCommentRepliedTo.php index 77dcebc..58062b7 100644 --- a/app/Mail/PhotoCommentRepliedTo.php +++ b/app/Mail/PhotoCommentRepliedTo.php @@ -8,14 +8,13 @@ use App\Photo; use App\PhotoComment; use App\User; use Illuminate\Bus\Queueable; -use Illuminate\Mail\Mailable; use Illuminate\Queue\SerializesModels; /** * E-mail notification to the poster of a comment that is sent when it has been approved. * @package App\Mail */ -class PhotoCommentRepliedTo extends Mailable +class PhotoCommentRepliedTo extends MailableBase { use Queueable, SerializesModels;