Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php namespace Arcanesoft\Auth\Notifications\Users; |
||
60 | public function toMail() |
||
61 | { |
||
62 | return (new MailMessage) |
||
63 | ->line('You are receiving this email because we received a password reset request for your account.') |
||
64 | ->action('Reset Password', route('auth::password.token', [$this->token])) |
||
65 | ->line('If you did not request a password reset, no further action is required.'); |
||
66 | } |
||
67 | } |
||
68 |