2024-07-06 19:14:51 -04:00
|
|
|
<?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;
|
|
|
|
|
2024-09-11 23:08:58 -04:00
|
|
|
/**
|
|
|
|
* Get the array representation of the notification.
|
|
|
|
*/
|
2024-07-06 19:14:51 -04:00
|
|
|
public function toArray(object $notifiable): array
|
|
|
|
{
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
}
|