1 | <?php declare(strict_types = 1); |
||
16 | final class RouteDispatcherFactory implements RouteDispatcherFactoryContract |
||
17 | { |
||
18 | /** |
||
19 | * @var Container |
||
20 | */ |
||
21 | private $container; |
||
22 | |||
23 | /** |
||
24 | * RouteDispatcherFactory constructor. |
||
25 | * |
||
26 | * @param Container $container |
||
27 | */ |
||
28 | 2 | public function __construct(Container $container) |
|
32 | |||
33 | /** |
||
34 | * @inheritDoc |
||
35 | */ |
||
36 | 1 | public function create(RouteContract $route): RouteDispatcherContract |
|
40 | |||
41 | |||
42 | } |