| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Code Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 55 | 7 | public function __construct( |
|
| 56 | 7 | $message, |
|
| 57 | $recipient, |
||
| 58 | array $options, |
||
| 59 | $subject, |
||
| 60 | $body, |
||
| 61 | 2 | array $parameters, |
|
| 62 | array $attachments |
||
| 63 | 2 | ) { |
|
| 64 | $this->message = $message; |
||
| 65 | $this->recipient = $recipient; |
||
| 66 | $this->options = $options; |
||
| 67 | $this->subject = $subject; |
||
| 68 | $this->body = $body; |
||
| 69 | 2 | $this->parameters = $parameters; |
|
| 70 | $this->attachments = $attachments; |
||
| 71 | 2 | } |
|
| 72 | |||
| 129 |