Total Complexity | 6 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | class QueryStringUriParser extends UriParser |
||
12 | { |
||
13 | /** |
||
14 | * Constructor; overridden to disable the separator parameters |
||
15 | */ |
||
16 | public function __construct() |
||
17 | { |
||
18 | parent::__construct(); |
||
19 | } |
||
20 | |||
21 | |||
22 | /** |
||
23 | * Compose an URI from the passed params with the local separators |
||
24 | * |
||
25 | * @param Params $params |
||
26 | * @return string |
||
27 | */ |
||
28 | public function composeUri($params) |
||
47 | } |
||
48 | } |
||
49 |