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

83 lines
1.8 KiB
PHP
Raw Normal View History

2019-07-18 06:53:22 +02:00
<?php
2020-09-21 12:54:58 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2020-09-21 12:54:58 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2020-09-21 12:54:58 +02:00
*/
2019-07-18 06:53:22 +02:00
namespace App\Notifications;
2020-10-28 11:10:49 +01:00
use Closure;
2019-07-18 06:53:22 +02:00
use Illuminate\Bus\Queueable;
use Illuminate\Foundation\Bus\Dispatchable;
2019-07-18 06:53:22 +02:00
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
2019-07-18 06:53:22 +02:00
//@deprecated
2019-07-18 06:53:22 +02:00
class ClientContactResetPassword extends Notification
{
// use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
/**
* The password reset token.
*
* @var string
*/
2019-07-18 06:53:22 +02:00
public $token;
/**
* The callback that should be used to build the mail message.
*
2020-10-28 11:10:49 +01:00
* @var Closure|null
2019-07-18 06:53:22 +02:00
*/
public static $toMailCallback;
/**
* Create a notification instance.
*
* @param string $token
* @return void
*/
public function __construct($token)
{
$this->token = $token;
}
/**
* Get the notification's channels.
*
* @param mixed $notifiable
* @return array|string
*/
public function via($notifiable)
{
return [];
2019-07-18 06:53:22 +02:00
}
/**
* Build the mail representation of the notification.
*
* @param mixed $notifiable
2023-08-01 12:30:47 +02:00
*
2019-07-18 06:53:22 +02:00
*/
public function toMail($notifiable)
{
}
/**
* Set a callback that should be used when building the notification mail message.
*
2020-10-28 11:10:49 +01:00
* @param Closure $callback
2019-07-18 06:53:22 +02:00
* @return void
*/
public static function toMailUsing($callback)
{
static::$toMailCallback = $callback;
}
}