Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | 2 | public function toMail($notifiable) |
|
24 | { |
||
25 | 2 | return (new MailMessage) |
|
26 | 2 | ->line('You are receiving this email because we received a password reset request for your account.') |
|
27 | 2 | ->action('Reset Password', url('login/reset', $this->token)) |
|
28 | 2 | ->line('If you did not request a password reset, no further action is required.'); |
|
29 | } |
||
31 | } |