| Total Complexity | 4 |
| Total Lines | 53 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class LoginTokenNotification extends Notification |
||
| 10 | { |
||
| 11 | use Queueable; |
||
| 12 | |||
| 13 | private $token; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Create a new notification instance. |
||
| 17 | * |
||
| 18 | * @return void |
||
| 19 | */ |
||
| 20 | public function __construct($token) |
||
| 21 | { |
||
| 22 | $this->token = $token; |
||
| 23 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Get the notification's delivery channels. |
||
| 27 | * |
||
| 28 | * @param mixed $notifiable |
||
| 29 | * |
||
| 30 | * @return array |
||
| 31 | */ |
||
| 32 | public function via($notifiable) |
||
|
|
|||
| 33 | { |
||
| 34 | return ['mail']; |
||
| 35 | } |
||
| 36 | |||
| 37 | /** |
||
| 38 | * Get the mail representation of the notification. |
||
| 39 | * |
||
| 40 | * @param mixed $notifiable |
||
| 41 | * |
||
| 42 | * @return \Illuminate\Notifications\Messages\MailMessage |
||
| 43 | */ |
||
| 44 | public function toMail($notifiable) |
||
| 45 | { |
||
| 46 | return (new MailMessage()) |
||
| 47 | ->line('Your Token is : '.$this->token) |
||
| 48 | ->action('Notification Action', route('tokenized_login.login')) |
||
| 49 | ->line('Your will be expired in 2 minutes!'); |
||
| 50 | } |
||
| 51 | |||
| 52 | /** |
||
| 53 | * Get the array representation of the notification. |
||
| 54 | * |
||
| 55 | * @param mixed $notifiable |
||
| 56 | * |
||
| 57 | * @return array |
||
| 58 | */ |
||
| 59 | public function toArray($notifiable) |
||
| 62 | // |
||
| 63 | ]; |
||
| 64 | } |
||
| 65 | } |
||
| 66 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.