Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | public function toMail($notifiable) |
||
|
|||
26 | { |
||
27 | $appName = ['appName' => setting('app-name')]; |
||
28 | return $this->newMailMessage() |
||
29 | ->subject(trans('auth.email_confirm_subject', $appName)) |
||
30 | ->greeting(trans('auth.email_confirm_greeting', $appName)) |
||
31 | ->line(trans('auth.email_confirm_text')) |
||
32 | ->action(trans('auth.email_confirm_action'), baseUrl('/register/confirm/' . $this->token)); |
||
33 | } |
||
34 | } |
||
35 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.