#124: Corrected the base class in the comment replied to mailable.

This commit is contained in:
Andy Heathershaw 2019-07-14 16:16:35 +01:00
parent 461517dd55
commit 0519a4ecc5
1 changed files with 1 additions and 2 deletions

View File

@ -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;