Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
52 | public function toMail($notifiable): MailMessage |
||
53 | { |
||
54 | return (new MailMessage()) |
||
55 | ->line('You are receiving this email because we received a password reset request for your account.') |
||
56 | ->line('If you did not request a password reset, no further action is required.') |
||
57 | ->action('Reset Password', url(config('app.url') . route('auth.password.reset', $this->token, false))) |
||
58 | ->level('primary') |
||
59 | ->subject('Reset Password - ' . config('app.name')); |
||
60 | } |
||
62 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.