2020-03-11 00:40:10 +01:00
|
|
|
<?php
|
2020-09-21 12:54:58 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-09-21 12:54:58 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2020-03-11 00:40:10 +01:00
|
|
|
|
|
|
|
namespace App\Notifications\Ninja;
|
|
|
|
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
|
|
use Illuminate\Notifications\Messages\MailMessage;
|
|
|
|
use Illuminate\Notifications\Notification;
|
2020-09-06 11:38:10 +02:00
|
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
2020-03-11 00:40:10 +01:00
|
|
|
|
2021-02-15 01:49:34 +01:00
|
|
|
//@deprecated
|
2021-02-11 14:02:22 +01:00
|
|
|
class VerifyUser extends Notification
|
2020-03-11 00:40:10 +01:00
|
|
|
{
|
2021-02-11 13:58:36 +01:00
|
|
|
// use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
2020-03-11 00:40:10 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new notification instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected $user;
|
|
|
|
|
2020-09-27 11:22:34 +02:00
|
|
|
private $company;
|
|
|
|
|
|
|
|
public function __construct($user, $company)
|
2020-03-11 00:40:10 +01:00
|
|
|
{
|
|
|
|
$this->user = $user;
|
2020-09-27 11:22:34 +02:00
|
|
|
$this->company = $company;
|
2020-03-11 00:40:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the notification's delivery channels.
|
|
|
|
*
|
|
|
|
* @param mixed $notifiable
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function via($notifiable)
|
|
|
|
{
|
2021-02-14 21:55:09 +01:00
|
|
|
return [''];
|
2020-03-11 00:40:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the mail representation of the notification.
|
|
|
|
*
|
|
|
|
* @param mixed $notifiable
|
2020-10-28 11:10:49 +01:00
|
|
|
* @return MailMessage
|
2020-03-11 00:40:10 +01:00
|
|
|
*/
|
|
|
|
public function toMail($notifiable)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the array representation of the notification.
|
|
|
|
*
|
|
|
|
* @param mixed $notifiable
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function toArray($notifiable)
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
//
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function toSlack($notifiable)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|