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