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