1 | <?php |
||
21 | class ArticleResolver implements ArticleResolverInterface |
||
22 | { |
||
23 | /** |
||
24 | * @var UrlMatcherInterface |
||
25 | */ |
||
26 | private $matcher; |
||
27 | |||
28 | public function __construct(UrlMatcherInterface $matcher) |
||
32 | |||
33 | public function resolve(string $url): ?ArticleInterface |
||
44 | |||
45 | private function getFragmentFromUrl(string $url, string $fragment): ?string |
||
54 | } |
||
55 |