1 | <?php |
||
14 | class MenuSubscriber implements EventSubscriberInterface |
||
15 | { |
||
16 | /** |
||
17 | * Returns an array of event names this subscriber wants to listen to. |
||
18 | * |
||
19 | * @return array The event names to listen to |
||
20 | */ |
||
21 | public static function getSubscribedEvents() |
||
28 | |||
29 | /** |
||
30 | * @param MenuEvent $event |
||
31 | */ |
||
32 | public function onConfigureMenuMain(MenuEvent $event) |
||
43 | |||
44 | /** |
||
45 | * @param MenuEvent $event |
||
46 | */ |
||
47 | public function onConfigureMenuMainAccount(MenuEvent $event) |
||
59 | } |
||
60 |