Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
41 | public function toMail($notifiable) |
||
42 | { |
||
43 | $appName = config('app.name'); |
||
44 | |||
45 | return (new MailMessage) |
||
46 | ->subject($appName.' One Time Password') |
||
47 | ->greeting('Hello!') |
||
48 | ->line('You have re.') |
||
49 | ->line(': '.$this->token->plainText()) |
||
50 | ->line('If you didn\'t request the password, simply ignore this message.'); |
||
51 | } |
||
66 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.