| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 11 |
| CRAP Score | 1 |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | 1 | protected function defaults() |
|
| 14 | { |
||
| 15 | return [ |
||
| 16 | 1 | 'after' => '', |
|
| 17 | 'attachments' => [], |
||
| 18 | 1 | 'bcc' => '', |
|
| 19 | 1 | 'before' => '', |
|
| 20 | 1 | 'cc' => '', |
|
| 21 | 1 | 'from' => $this->getFromName().' <'.$this->getFromEmail().'>', |
|
| 22 | 1 | 'message' => '', |
|
| 23 | 1 | 'reply-to' => '', |
|
| 24 | 1 | 'subject' => '', |
|
| 25 | 1 | 'template' => '', |
|
| 26 | 'template-tags' => [], |
||
| 27 | 1 | 'to' => '', |
|
| 28 | ]; |
||
| 47 |