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