| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | public function __invoke(ContainerInterface $container, $requestedName, array $options = null) |
||
| 17 | { |
||
| 18 | return new MenuService( |
||
| 19 | $container->get(MenuMapper::class), |
||
| 20 | $container->get(MenuFilter::class), |
||
| 21 | $container->get(CategoryService::class), |
||
| 22 | $container->get(PageService::class) |
||
| 23 | ); |
||
| 24 | } |
||
| 25 | } |
||
| 26 |