Total Complexity | 4 |
Total Lines | 52 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class ConfirmPassport extends Notification |
||
11 | { |
||
12 | use Queueable; |
||
13 | |||
14 | /** |
||
15 | * Create a new notification instance. |
||
16 | * |
||
17 | * @return void |
||
18 | */ |
||
19 | public function __construct() |
||
20 | { |
||
21 | // |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * Get the notification's delivery channels. |
||
26 | * |
||
27 | * @param mixed $notifiable |
||
28 | * @return array |
||
29 | */ |
||
30 | public function via($notifiable) |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * Get the mail representation of the notification. |
||
37 | * |
||
38 | * @param mixed $notifiable |
||
39 | * @return \Illuminate\Notifications\Messages\MailMessage |
||
40 | */ |
||
41 | public function toMail($notifiable) |
||
51 | } |
||
52 | |||
53 | /** |
||
54 | * Get the array representation of the notification. |
||
55 | * |
||
56 | * @param mixed $notifiable |
||
57 | * @return array |
||
58 | */ |
||
59 | public function toArray($notifiable) |
||
62 | // |
||
63 | ]; |
||
66 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.