| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 42 | public function toMail() |
||
| 43 | { |
||
| 44 | return (new MailMessage) |
||
| 45 | ->line('A new Tech Tip has been created') |
||
| 46 | ->line('Subject: '.$this->details->subject) |
||
| 47 | ->action('Click to view Tech Tip', url(route('tip.details', ['id' => $this->details->tip_id, 'name' => urlencode($this->details->subject)]))); |
||
| 48 | } |
||
| 71 |