| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 42 | public function toMail($notifiable) |
||
| 43 | { |
||
| 44 | return (new MailMessage) |
||
| 45 | ->greeting('Hello') |
||
| 46 | ->line('User '.$this->user->full_name.' has commented on Tech Tip - .'.$this->tip->subject) |
||
| 47 | ->line('The comment is: ') |
||
| 48 | ->line($this->comment->comment) |
||
| 49 | ->action('Click Here to review the comment', url(route('tech-tips.show', $this->tip->slug))); |
||
| 50 | } |
||
| 65 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.