forge/app/Notifications/VerifyEmail.php
Refringe 53b67b23dd
Queueable Account Notifications
The email verification and password reset notifications are now handled on a queue.
2024-07-06 19:14:51 -04:00

21 lines
442 B
PHP

<?php
namespace App\Notifications;
use Illuminate\Auth\Notifications\VerifyEmail as OriginalVerifyEmail;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
/**
* This class exists solely to make the original notification queueable.
*/
class VerifyEmail extends OriginalVerifyEmail implements ShouldQueue
{
use Queueable;
public function toArray(object $notifiable): array
{
return [];
}
}