| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 30 | 3 | public function __construct( |
|
| 31 | $finished = null, |
||
| 32 | array $headers = null, |
||
| 33 | $headersSent = null, |
||
| 34 | $statusCode = null, |
||
| 35 | $transferSize = null, |
||
| 36 | $encodedBodySize = null, |
||
| 37 | $decodedBodySize = null |
||
| 38 | ) { |
||
| 39 | 3 | parent::__construct($statusCode, $transferSize, $encodedBodySize, $decodedBodySize, $headers); |
|
| 40 | |||
| 41 | 3 | $this->finished = $finished; |
|
| 42 | 3 | $this->headersSent = $headersSent; |
|
| 43 | 3 | } |
|
| 75 |