| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 31 | 3 | public function __construct($statusCode, $reasonPhrase = '', $version = self::DEFAULT_VERSION, array $headers = [], StreamInterface $body = null) |
|
| 32 | { |
||
| 33 | 3 | if ($body === null) { |
|
| 34 | 3 | $body = new Stream(fopen('php://output', 'w')); |
|
| 35 | 3 | } |
|
| 36 | |||
| 37 | 3 | parent::__construct($statusCode, $reasonPhrase, $version, $headers, $body); |
|
| 38 | 3 | } |
|
| 39 | /** |
||
| 57 |