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