Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
23 | 4 | public function aggregate(array $queryParams) |
|
24 | { |
||
25 | 4 | $queryString = http_build_query($queryParams, null, '&', PHP_QUERY_RFC3986); |
|
26 | |||
27 | 4 | if ($this->removeNumericIndices) { |
|
28 | 1 | $queryString = preg_replace('/%5B[0-9]+%5D/simU', '%5B%5D', $queryString); |
|
29 | 1 | } |
|
30 | |||
31 | 4 | return $queryString; |
|
32 | } |
||
33 | } |