Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
38 | public function toMail($notifiable) |
||
39 | { |
||
40 | return (new MailMessage) |
||
41 | ->line('You are receiving this notification because you are subscribing to FaithGen.') |
||
42 | ->action('Approve Subscription', url("/api/subscriptions/{$notifiable->id}/{$notifiable->email}")) |
||
43 | ->line('Thank you for using our application!'); |
||
44 | } |
||
60 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.