| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 9 |
| Ratio | 100 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | 33 | View Code Duplication | public function __construct($messageId, array $headers, $body) |
| 30 | { |
||
| 31 | 33 | Guard::againstNullAndEmpty('messageId', $messageId); |
|
| 32 | 32 | Guard::againstNull('body', $body); |
|
| 33 | |||
| 34 | 31 | $this->messageId = $messageId; |
|
| 35 | 31 | $this->headers = $headers; |
|
| 36 | 31 | $this->body = $body; |
|
| 37 | 31 | } |
|
| 38 | |||
| 90 |