1 | <?php |
||
20 | abstract class AbstractMenuBuilder |
||
21 | { |
||
22 | /** |
||
23 | * @var FactoryInterface |
||
24 | */ |
||
25 | protected $factory; |
||
26 | |||
27 | /** |
||
28 | * @var EventDispatcherInterface |
||
29 | */ |
||
30 | protected $eventDispatcher; |
||
31 | |||
32 | /** |
||
33 | * @param FactoryInterface $factory |
||
34 | * @param EventDispatcherInterface $eventDispatcher |
||
35 | */ |
||
36 | public function __construct( |
||
43 | } |
||
44 |