| 1 | <?php |
||
| 12 | class ConfirmEmail extends Notification implements ShouldQueue |
||
| 13 | { |
||
| 14 | use Queueable; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Get the notification's delivery channels. |
||
| 18 | * |
||
| 19 | * @param mixed $notifiable |
||
| 20 | * @return array |
||
| 21 | */ |
||
| 22 | public function via($notifiable) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Get the mail representation of the notification. |
||
| 29 | * |
||
| 30 | * @param mixed $notifiable |
||
| 31 | * @return \Illuminate\Notifications\Messages\MailMessage |
||
| 32 | */ |
||
| 33 | public function toMail($notifiable) |
||
| 41 | |||
| 42 | protected function confirmationUrl($notifiable) |
||
| 50 | } |
||
| 51 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.