Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | public function dispatchMenuEvents(string $menuName, ItemInterface $menu): void |
||
15 | { |
||
16 | $this->eventDispatcher->dispatch(new MenuEvent($menuName, $menu), MenuEvents::MENU_CREATED); |
||
17 | $this->eventDispatcher->dispatch( |
||
18 | new MenuEvent($menuName, $menu), |
||
19 | sprintf(MenuEvents::MENU_CREATED_SPECIFIC, $menuName) |
||
20 | ); |
||
23 |