| Total Complexity | 4 |
| Total Lines | 60 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class SendActivationEmail extends Notification implements ShouldQueue |
||
| 11 | { |
||
| 12 | use Queueable; |
||
| 13 | |||
| 14 | protected $token; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Create a new notification instance. |
||
| 18 | * |
||
| 19 | * SendActivationEmail constructor. |
||
| 20 | * |
||
| 21 | * @param $token |
||
| 22 | */ |
||
| 23 | public function __construct($token) |
||
| 24 | { |
||
| 25 | $this->token = $token; |
||
| 26 | $this->onQueue('social'); |
||
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Get the notification's delivery channels. |
||
| 31 | * |
||
| 32 | * @param mixed $notifiable |
||
| 33 | * |
||
| 34 | * @return array |
||
| 35 | */ |
||
| 36 | public function via($notifiable) |
||
| 39 | } |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Get the mail representation of the notification. |
||
| 43 | * |
||
| 44 | * @param mixed $notifiable |
||
| 45 | * |
||
| 46 | * @return \Illuminate\Notifications\Messages\MailMessage |
||
| 47 | */ |
||
| 48 | public function toMail($notifiable) |
||
| 58 | } |
||
| 59 | |||
| 60 | /** |
||
| 61 | * Get the array representation of the notification. |
||
| 62 | * |
||
| 63 | * @param mixed $notifiable |
||
| 64 | * |
||
| 65 | * @return array |
||
| 66 | */ |
||
| 67 | public function toArray($notifiable) |
||
| 74 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.