Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
14 | 4 | public function __construct($body, array $properties = array(), $contentType = null, $queueName = '') |
|
15 | { |
||
16 | 4 | $this->body = $body; |
|
17 | 4 | $this->properties = $properties; |
|
18 | 4 | if ($contentType != null) { |
|
19 | 4 | $this->contentType = $contentType; |
|
20 | } |
||
21 | 4 | $this->queueName = $queueName; |
|
22 | 4 | } |
|
23 | |||
74 |