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