Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 11 |
CRAP Score | 1 |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
32 | 692 | protected static function normalizeUriHash(array $components) |
|
33 | { |
||
34 | 692 | return array_replace([ |
|
35 | 692 | 'scheme' => null, |
|
36 | 461 | 'user' => null, |
|
37 | 461 | 'pass' => null, |
|
38 | 461 | 'host' => null, |
|
39 | 461 | 'port' => null, |
|
40 | 461 | 'path' => '', |
|
41 | 461 | 'query' => null, |
|
42 | 461 | 'fragment' => null, |
|
43 | 461 | ], $components); |
|
44 | } |
||
45 | |||
68 |