Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
38 | 1 | public function createResponse( |
|
39 | $statusCode = 200, |
||
40 | $reasonPhrase = null, |
||
41 | array $headers = [], |
||
42 | $body = null, |
||
43 | $protocolVersion = '1.1' |
||
44 | 1 | ) { |
|
45 | 1 | return new Response( |
|
46 | 1 | $statusCode, |
|
47 | 1 | $headers, |
|
48 | 1 | $body, |
|
49 | 1 | $protocolVersion, |
|
50 | $reasonPhrase |
||
51 | 1 | ); |
|
52 | } |
||
53 | } |
||
54 |