Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | public function toMail($notifiable) |
||
24 | { |
||
25 | return (new MailMessage) |
||
26 | ->line('You are receiving this email because we received a password reset request for your account.') |
||
27 | ->action('Reset Password', url('login/reset', $this->token)) |
||
|
|||
28 | ->line('If you did not request a password reset, no further action is required.'); |
||
29 | } |
||
30 | |||
31 | } |
This check looks at variables that are passed out again to other methods.
If the outgoing method call has stricter type requirements than the method itself, an issue is raised.
An additional type check may prevent trouble.