Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
16 | public function __invoke(ContainerInterface $container) : VideoController |
||
17 | { |
||
18 | return new VideoController( |
||
19 | $container->get(TemplateRendererInterface::class), |
||
20 | $container->get(RouterInterface::class), |
||
21 | $container->get(VideoService::class), |
||
22 | $container->get('session'), |
||
23 | $container->get(CategoryService::class) |
||
24 | ); |
||
25 | } |
||
26 | } |
||
27 |