| 1 | <?php |
||
| 9 | class CartItemDetail |
||
| 10 | { |
||
| 11 | private $id; |
||
| 12 | |||
| 13 | private $name; |
||
| 14 | |||
| 15 | private $cartItem; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Getter for id |
||
| 19 | * |
||
| 20 | * @return string |
||
| 21 | */ |
||
| 22 | public function getId() |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Setter for id |
||
| 29 | * |
||
| 30 | * @param string $id |
||
| 31 | * @return CartItemDetail |
||
| 32 | */ |
||
| 33 | public function setId($id) |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Getter for name |
||
| 41 | * |
||
| 42 | * @return string |
||
| 43 | */ |
||
| 44 | public function getName() |
||
| 48 | |||
| 49 | /** |
||
| 50 | * Setter for name |
||
| 51 | * |
||
| 52 | * @param string $name |
||
| 53 | * @return CartItemDetail |
||
| 54 | */ |
||
| 55 | public function setName($name) |
||
| 60 | |||
| 61 | /** |
||
| 62 | * Getter for cartItem |
||
| 63 | * |
||
| 64 | * @return CartItem |
||
| 65 | */ |
||
| 66 | public function getCartItem() |
||
| 70 | |||
| 71 | /** |
||
| 72 | * Setter for cartItem |
||
| 73 | * |
||
| 74 | * @param CartItem $cartItem |
||
| 75 | * @return CartItemDetail |
||
| 76 | */ |
||
| 77 | public function setCartItem(CartItem $cartItem) |
||
| 83 | } |
||
| 84 |