Files
monica/app/Interfaces/MailNotification.php
T
2020-01-03 22:26:04 +01:00

18 lines
363 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;
}