Total Complexity | 3 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | trait UriResolvableTrait |
||
21 | { |
||
22 | /** |
||
23 | * {@see EntryInterface::getPathname()} |
||
24 | */ |
||
25 | abstract public function getPathname(): string; |
||
26 | |||
27 | /** |
||
28 | * {@see UriResolvableInterface::toUri()} |
||
29 | */ |
||
30 | public function toUri(): UriInterface |
||
39 | } |
||
40 | |||
41 | /** |
||
42 | * {@see UriResolvableInterface::toUriFrom()} |
||
43 | */ |
||
44 | public function toUriFrom(ResolverInterface $resolver): UriInterface |
||
47 | } |
||
48 | |||
49 | /** |
||
50 | * @return ResolverInterface|null |
||
51 | */ |
||
52 | abstract protected function getResolver(): ?ResolverInterface; |
||
53 | } |
||
54 |