1 | <?php |
||
11 | class Router |
||
12 | { |
||
13 | /** @var MethodCollection */ |
||
14 | private $collection; |
||
15 | |||
16 | /** |
||
17 | * Router constructor. |
||
18 | * |
||
19 | * @param LoaderResolverInterface $resolver |
||
20 | * @param array $resources |
||
21 | * @param MethodCollection|null $collection |
||
22 | * |
||
23 | * @param array $context |
||
24 | */ |
||
25 | 8 | public function __construct( |
|
50 | |||
51 | /** |
||
52 | * @return MethodCollection |
||
53 | */ |
||
54 | 8 | public function getCollection() |
|
58 | } |
||
59 |