Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
38 | public function toMail() |
||
39 | { |
||
40 | return (new MailMessage()) |
||
41 | ->subject('Reset your password') |
||
42 | ->line('You are receiving this email because we received a password reset request for your account.') |
||
43 | ->line('Copy the code below.') |
||
44 | ->line($this->token) |
||
45 | ->line('If you did not request a password reset, no further action is required.'); |
||
46 | } |
||
48 |