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