| Conditions | 3 |
| Paths | 3 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 3 |
| 1 | <?php |
||
| 77 | 3 | protected function normalizeUrl($url, array $parameters = array()) |
|
| 78 | { |
||
| 79 | 3 | $normalizedUrl = $url; |
|
| 80 | 3 | if (!empty($parameters)) { |
|
| 81 | 2 | $normalizedUrl .= (false !== strpos($url, '?') ? '&' : '?').http_build_query($parameters, '', '&'); |
|
| 82 | 2 | } |
|
| 83 | |||
| 84 | 3 | return $normalizedUrl; |
|
| 85 | } |
||
| 86 | } |
||
| 87 |