| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | public function toMail($notifiable) |
||
| 20 | { |
||
| 21 | return (new MailMessage) |
||
| 22 | ->subject(trans('requirepin::pin.notify.subject')) |
||
| 23 | ->line(trans('requirepin::pin.notify.introduction')) |
||
| 24 | ->line(trans('requirepin::pin.notify.message')) |
||
| 25 | ->action(trans('requirepin::pin.notify.action'), url(config('requirepin.change_pin_route'))) |
||
| 26 | ->line(trans('requirepin::pin.notify.complimentary_close')); |
||
| 27 | } |
||
| 36 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.