1 | <?php |
||
24 | class XmlRewritesRouter implements RouterInterface |
||
25 | { |
||
26 | /** |
||
27 | * @var \Magento\Framework\App\ActionFactory |
||
28 | */ |
||
29 | private $actionFactory; |
||
30 | |||
31 | /** |
||
32 | * @var RewritesProviderInterface |
||
33 | */ |
||
34 | private $rewritesProvider; |
||
35 | |||
36 | /** |
||
37 | * XmlRewritesRouter constructor. |
||
38 | * @param \Magento\Framework\App\ActionFactory $actionFactory |
||
39 | * @param RewritesProviderInterface $rewritesProvider |
||
40 | */ |
||
41 | public function __construct( |
||
48 | |||
49 | /** |
||
50 | * @param RequestInterface $request |
||
51 | * @return ActionInterface|null |
||
52 | */ |
||
53 | public function match(RequestInterface $request) |
||
69 | } |
||
70 |