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