| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 22 | public function toMail($notifiable) |
||
| 23 | { |
||
| 24 | return (new MailMessage) |
||
| 25 | ->subject('Your Reset Password Subject Here') |
||
| 26 | ->line('You are receiving this email because we received a password reset request for your account.') |
||
| 27 | ->action('Reset Password', env('FRONTEND_URL', 'http://localhost:3000').'/password/reset/'.$this->token) |
||
| 28 | ->line('If you did not request a password reset, no further action is required.'); |
||
| 29 | } |
||
| 31 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.