Files
monica/app/Interfaces/MailNotification.php
2021-09-12 09:13:02 +02:00

18 lines
364 B
PHP

<?php
namespace App\Interfaces;
use App\Models\User\User;
use Illuminate\Notifications\Messages\MailMessage;
interface MailNotification
{
/**
* Get the mail representation of the notification.
*
* @param User $user
* @return \Illuminate\Notifications\Messages\MailMessage
*/
public function toMail(User $user): MailMessage;
}