forge/app/Notifications/ResetPassword.php

33 lines
679 B
PHP
Raw Normal View History

<?php
2025-01-30 00:23:55 -05:00
declare(strict_types=1);
namespace App\Notifications;
use Illuminate\Auth\Notifications\ResetPassword as OriginalResetPassword;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
/**
* This class exists solely to make the original notification queueable.
*/
class ResetPassword extends OriginalResetPassword implements ShouldQueue
{
use Queueable;
public function __construct($token)
{
parent::__construct($token);
}
2024-09-11 23:08:58 -04:00
/**
* Get the array representation of the notification.
2025-01-30 20:49:56 -05:00
*
* @return array<int, mixed>
2024-09-11 23:08:58 -04:00
*/
public function toArray(object $notifiable): array
{
return [];
}
}