| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 59 | 1 | public function createResponse( |
|
| 60 | $statusCode = 200, |
||
| 61 | $reasonPhrase = null, |
||
| 62 | array $headers = [], |
||
| 63 | $body = null, |
||
| 64 | $protocolVersion = '1.1' |
||
| 65 | ) { |
||
| 66 | 1 | return (new Response( |
|
| 67 | 1 | $statusCode, |
|
| 68 | 1 | new Headers($headers), |
|
| 69 | 1 | $this->streamFactory->createStream($body) |
|
| 70 | 1 | ))->withProtocolVersion($protocolVersion); |
|
| 71 | } |
||
| 72 | } |
||
| 73 |