| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 10 |
| 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 received this email because we received a password reset request for your account.') |
||
| 53 | ->line('If you have not requested a password reset, no further action is required ' . |
||
| 54 | 'and you can ignore this email.') |
||
| 55 | ->action( |
||
| 56 | 'Reset my Password', |
||
| 57 | url(config('app.url') . route('users.auth.password.reset', $this->token, false)) |
||
| 58 | ) |
||
| 59 | ->level('primary') |
||
| 60 | ->subject('Password Reset - ' . config('app.name')) |
||
| 61 | ->from(config('xetaravel.site.contact_email'), config('app.name')); |
||
| 62 | } |
||
| 64 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.