1 | <?php |
||
9 | class MenuBuilder { |
||
10 | private $factory; |
||
11 | |||
12 | private $event_dispatcher; |
||
13 | |||
14 | /** |
||
15 | * @param FactoryInterface $factory |
||
16 | * @param \Symfony\Component\EventDispatcher\EventDispatcherInterface $event_dispatcher |
||
17 | */ |
||
18 | public function __construct(FactoryInterface $factory, EventDispatcherInterface $event_dispatcher) { |
||
22 | |||
23 | public function createMainMenu() { |
||
41 | } |
||
42 |