| 1 | <?php |
||
| 10 | class UriParser implements UriParserInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * {@inheritDoc} |
||
| 14 | */ |
||
| 15 | 27 | public function isAbsolute(UriInterface $uri) |
|
| 19 | |||
| 20 | /** |
||
| 21 | * {@inheritDoc} |
||
| 22 | */ |
||
| 23 | 12 | public function isMissingScheme(UriInterface $uri) |
|
| 27 | |||
| 28 | /** |
||
| 29 | * {@inheritDoc} |
||
| 30 | */ |
||
| 31 | 7 | public function buildFromParts(array $parts) |
|
| 35 | |||
| 36 | /** |
||
| 37 | * {@inheritDoc} |
||
| 38 | */ |
||
| 39 | 10 | public function resolve(UriInterface $baseUri, UriInterface $uri) |
|
| 43 | |||
| 44 | /** |
||
| 45 | * {@inheritDoc} |
||
| 46 | */ |
||
| 47 | 1 | public function appendQueryParameters(UriInterface $uri, array $parameters = []) |
|
| 55 | |||
| 56 | /** |
||
| 57 | * {@inheritDoc} |
||
| 58 | */ |
||
| 59 | 48 | public function toPsrUri($uri) |
|
| 69 | } |
||
| 70 |