1 | <?php |
||
21 | final class MenuBuilderEvent extends Event |
||
22 | { |
||
23 | /** |
||
24 | * @var FactoryInterface |
||
25 | */ |
||
26 | private $factory; |
||
27 | |||
28 | /** |
||
29 | * @var ItemInterface |
||
30 | */ |
||
31 | private $menu; |
||
32 | |||
33 | /** |
||
34 | * @param FactoryInterface $factory |
||
35 | * @param ItemInterface $menu |
||
36 | */ |
||
37 | public function __construct(FactoryInterface $factory, ItemInterface $menu) |
||
42 | |||
43 | /** |
||
44 | * @return FactoryInterface |
||
45 | */ |
||
46 | public function getFactory() |
||
50 | |||
51 | /** |
||
52 | * @return ItemInterface |
||
53 | */ |
||
54 | public function getMenu() |
||
58 | } |
||
59 |