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