| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types = 1); |
||
| 26 | 32 | public function __construct( |
|
| 27 | ResponseCode $responseCode, |
||
| 28 | ?array $data, |
||
| 29 | array $headers = [], |
||
| 30 | array $extensions = [] |
||
| 31 | ) |
||
| 32 | { |
||
| 33 | 32 | $this->responseCode = $responseCode; |
|
| 34 | 32 | $this->data = $data; |
|
| 35 | 32 | $this->headers = $headers; |
|
| 36 | 32 | $this->extensions = $extensions; |
|
| 37 | 32 | } |
|
| 69 |