1 | <?php |
||
16 | class ExposedRoutesExtractor implements ExposedRoutesExtractorInterface |
||
17 | { |
||
18 | /** |
||
19 | * @var ExposedRoutesExtractorInterface |
||
20 | */ |
||
21 | private $innerExtractor; |
||
22 | |||
23 | /** |
||
24 | * @var Request |
||
25 | */ |
||
26 | private $masterRequest; |
||
27 | |||
28 | public function __construct(ExposedRoutesExtractorInterface $innerExtractor, Request $masterRequest) |
||
33 | |||
34 | public function getRoutes() |
||
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | * |
||
42 | * Will add the SiteAccess if configured in the URI. |
||
43 | * |
||
44 | * @return string |
||
45 | */ |
||
46 | public function getBaseUrl() |
||
56 | |||
57 | public function getPrefix($locale) |
||
61 | |||
62 | public function getHost() |
||
66 | |||
67 | public function getScheme() |
||
71 | |||
72 | public function getCachePath($locale) |
||
76 | |||
77 | public function getResources() |
||
81 | |||
82 | public function getExposedRoutes() |
||
86 | } |
||
87 |