Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
47 | public function toMail($notifiable) |
||
48 | { |
||
49 | return (new MailMessage) |
||
50 | ->subject('A Tech Tip has been commented on') |
||
51 | ->greeting($this->commentData->user.' has commented on Tech Tip - '.$this->tipData->subject) |
||
52 | ->line($this->commentData->comment) |
||
53 | ->action('Click to View the Tech Tip', url(route('tech-tips.show', $this->tipData->slug))); |
||
54 | } |
||
69 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.