| Total Complexity | 4 |
| Total Lines | 53 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class NewUserEmail extends Notification implements ShouldQueue |
||
| 11 | { |
||
| 12 | use Queueable; |
||
| 13 | protected $user, $hash; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Create a new notification instance. |
||
| 17 | * |
||
| 18 | * @return void |
||
| 19 | */ |
||
| 20 | public function __construct($user, $hash) |
||
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Get the notification's delivery channels. |
||
| 29 | * |
||
| 30 | * @param mixed $notifiable |
||
| 31 | * @return array |
||
| 32 | */ |
||
| 33 | public function via($notifiable) |
||
|
|
|||
| 34 | { |
||
| 35 | return ['mail']; |
||
| 36 | } |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Get the mail representation of the notification. |
||
| 40 | * |
||
| 41 | * @param mixed $notifiable |
||
| 42 | * @return \Illuminate\Notifications\Messages\MailMessage |
||
| 43 | */ |
||
| 44 | public function toMail($notifiable) |
||
| 45 | { |
||
| 46 | return (new MailMessage) |
||
| 47 | ->greeting('Hello '.$this->user->full_name) |
||
| 48 | ->line('A new '.config('app.name').' account has been created for you.') |
||
| 49 | ->line('Your new username is: **'.$this->user->username.'**') |
||
| 50 | ->line('You can click the link below to finsh setting up your account.') |
||
| 51 | ->action('Setup Account', url(route('initialize', $this->hash))); |
||
| 52 | } |
||
| 53 | |||
| 54 | /** |
||
| 55 | * Get the array representation of the notification. |
||
| 56 | * |
||
| 57 | * @param mixed $notifiable |
||
| 58 | * @return array |
||
| 59 | */ |
||
| 60 | public function toArray($notifiable) |
||
| 63 | // |
||
| 64 | ]; |
||
| 65 | } |
||
| 67 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.