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