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