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