Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
44 | public function toMail($notifiable) |
||
45 | { |
||
46 | $url = url(config('app.b_url').'/password-reset/'.$this->token); |
||
47 | |||
48 | return (new MailMessage()) |
||
49 | ->line('You are receiving this email because we received a password reset request for your account.') |
||
50 | ->action('Reset Password', url($url)) |
||
51 | ->line('If you did not request a password reset, no further action is required.'); |
||
52 | } |
||
68 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.