| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class Utils |
||
| 13 | { |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Builds url from array of parameters |
||
| 17 | * |
||
| 18 | * @param string $base The base url |
||
| 19 | * @param array $body Each segment of the url |
||
| 20 | * @param array $params The query string parameters |
||
| 21 | * @return string |
||
| 22 | */ |
||
| 23 | public static function buildUrl(string $base, array $body, array $params): string |
||
| 33 | } |