1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Notifications/ResetPasswordNotification.php

59 lines
1013 B
PHP
Raw Normal View History

2020-10-27 16:04:28 +01:00
<?php
namespace App\Notifications;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;
//@deprecated
2020-10-27 16:04:28 +01:00
class ResetPasswordNotification extends Notification
{
2023-10-26 04:57:44 +02:00
// use Queueable;
2020-10-27 16:04:28 +01:00
public $token;
/**
* Create a new notification instance.
*
2020-10-28 11:10:49 +01:00
* @param string $token
2020-10-27 16:04:28 +01:00
*/
public function __construct(string $token)
{
$this->token = $token;
}
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
public function via($notifiable)
{
return [];
2020-10-27 16:04:28 +01:00
}
/**
* Get the mail representation of the notification.
*
* @param mixed $notifiable
2023-10-26 04:57:44 +02:00
*
2020-10-27 16:04:28 +01:00
*/
public function toMail($notifiable)
{
}
/**
* Get the array representation of the notification.
*
* @param mixed $notifiable
* @return array
*/
public function toArray($notifiable)
{
return [
//
];
}
}