| 1 | <?php |
||
| 12 | class MenuSubscriber implements EventSubscriberInterface |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * Returns an array of event names this subscriber wants to listen to. |
||
| 16 | * |
||
| 17 | * @return array The event names to listen to |
||
| 18 | */ |
||
| 19 | public static function getSubscribedEvents() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param MenuEvent $event |
||
| 28 | */ |
||
| 29 | public function onConfigureMenuMain(MenuEvent $event) |
||
| 58 | } |
||
| 59 |