| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 45 | public function toMail($notifiable) |
||
| 46 | { |
||
| 47 | return (new MailMessage) |
||
| 48 | ->line('You are receiving this email because we received a password reset request for your account.') |
||
| 49 | ->action('Reset Password', url('panel/password/reset', $this->token)) |
||
| 50 | ->line('If you did not request a password reset, no further action is required.'); |
||
| 51 | } |
||
| 52 | } |
||
| 53 |
Adding a
@returnannotation to a constructor is not recommended, since a constructor does not have a meaningful return value.Please refer to the PHP core documentation on constructors.