1 | <?php |
||
7 | class CartRow |
||
8 | { |
||
9 | private $meal; |
||
10 | |||
11 | private $quantity; |
||
12 | |||
13 | public function __construct(Meal $meal, $quantity = 1) |
||
18 | |||
19 | public function getPrice() |
||
23 | |||
24 | public function getMeal() |
||
28 | |||
29 | public function addQuantity($quantity) |
||
33 | |||
34 | public function getQuantity() |
||
38 | |||
39 | public function setQuantity($quantity) |
||
45 | |||
46 | public function toArray() |
||
55 | } |
||
56 |