| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | public function toMail($notifiable) |
||
| 32 | { |
||
| 33 | return (new MailMessage) |
||
| 34 | ->subject(__('confirmation::confirmation.confirmation_subject')) |
||
| 35 | ->line(__('confirmation::confirmation.confirmation_subject_title')) |
||
| 36 | ->line(__('confirmation::confirmation.confirmation_body')) |
||
| 37 | ->action(__('confirmation::confirmation.confirmation_button'), |
||
| 38 | url("register/confirm/$notifiable->confirmation_code")); |
||
| 39 | } |
||
| 40 | } |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.