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