mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-12 20:20:41 -05:00
Refringe
2cca45bcea
Part of moving back to PHPStan level 5 means we can remove some of these. They're very busy and don't give enough context to outweigh the ugly.
29 lines
613 B
PHP
29 lines
613 B
PHP
<?php
|
|
|
|
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);
|
|
}
|
|
|
|
/**
|
|
* Get the array representation of the notification.
|
|
*/
|
|
public function toArray(object $notifiable): array
|
|
{
|
|
return [];
|
|
}
|
|
}
|