Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types = 1); |
||
32 | public function __construct( |
||
33 | ResponseCode $responseCode, |
||
34 | array $data = null, |
||
35 | array $headers = [], |
||
36 | array $extensions = [] |
||
37 | ) |
||
38 | { |
||
39 | $this->responseCode = $responseCode; |
||
40 | $this->data = $data; |
||
41 | $this->headers = $headers; |
||
42 | $this->extensions = $extensions; |
||
43 | } |
||
44 | |||
75 |