Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
38 | 2 | public function __construct( |
|
39 | $replyCode, |
||
40 | $replyText, |
||
41 | $exchange, |
||
42 | $routingKey, |
||
43 | $body, |
||
44 | array $properties |
||
45 | ) { |
||
46 | 2 | $this->replyCode = $replyCode; |
|
47 | 2 | $this->replyText = $replyText; |
|
48 | 2 | $this->exchange = $exchange; |
|
49 | 2 | $this->routingKey = $routingKey; |
|
50 | |||
51 | 2 | parent::__construct($body, $properties); |
|
52 | 2 | } |
|
53 | |||
89 |