1 | <?php |
||
22 | class ProductMenuBuilderEvent extends MenuBuilderEvent |
||
23 | { |
||
24 | /** |
||
25 | * @var ProductInterface |
||
26 | */ |
||
27 | private $product; |
||
28 | |||
29 | /** |
||
30 | * @param FactoryInterface $factory |
||
31 | * @param ItemInterface $menu |
||
32 | * @param ProductInterface $product |
||
33 | */ |
||
34 | public function __construct(FactoryInterface $factory, ItemInterface $menu, ProductInterface $product) |
||
40 | |||
41 | /** |
||
42 | * @return ProductInterface |
||
43 | */ |
||
44 | public function getProduct() |
||
48 | } |
||
49 |