| 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() |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param MenuEvent $event |
||
| 29 | */ |
||
| 30 | public function onConfigureKitchensinkMenu(MenuEvent $event) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @param MenuEvent $event |
||
| 38 | */ |
||
| 39 | public function onConfigureMenu(MenuEvent $event) |
||
| 53 | } |
||
| 54 |