1 | <?php |
||
9 | class UriParser implements UriParserInterface |
||
10 | { |
||
11 | /** |
||
12 | * {@inheritDoc} |
||
13 | */ |
||
14 | public function isAbsolute(UriInterface $uri) |
||
18 | |||
19 | /** |
||
20 | * {@inheritDoc} |
||
21 | */ |
||
22 | public function isMissingScheme(UriInterface $uri) |
||
26 | |||
27 | /** |
||
28 | * {@inheritDoc} |
||
29 | */ |
||
30 | public function resolve(UriInterface $baseUri, UriInterface $uri) |
||
34 | |||
35 | /** |
||
36 | * {@inheritDoc} |
||
37 | */ |
||
38 | public function toPsrUri($uri) |
||
48 | } |
||
49 |