1 | <?php |
||
5 | class CartItemMeta |
||
6 | { |
||
7 | protected $parentOptionId; |
||
8 | protected $productId; |
||
9 | protected $itemNumber; |
||
10 | protected $parentOptionName; |
||
11 | protected $flatOptions = array(); |
||
12 | protected $image; |
||
13 | protected $uom; |
||
14 | |||
15 | public function __construct(array $config = array()) |
||
27 | |||
28 | /** |
||
29 | * Get parentOptionId. |
||
30 | * |
||
31 | * @return parentOptionId. |
||
|
|||
32 | */ |
||
33 | public function getParentOptionId() |
||
37 | |||
38 | /** |
||
39 | * Set parentOptionId. |
||
40 | * |
||
41 | * @param parentOptionId the value to set. |
||
42 | */ |
||
43 | public function setParentOptionId($parentOptionId) |
||
44 | { |
||
45 | $this->parentOptionId = $parentOptionId; |
||
46 | return $this; |
||
47 | } |
||
48 | |||
49 | /** |
||
50 | * Get parentOptionName. |
||
51 | * |
||
52 | * @return parentOptionName. |
||
53 | */ |
||
54 | public function getParentOptionName() |
||
58 | |||
59 | /** |
||
60 | * Set parentOptionName. |
||
61 | * |
||
62 | * @param parentOptionName the value to set. |
||
63 | */ |
||
64 | public function setParentOptionName($parentOptionName) |
||
65 | { |
||
66 | $this->parentOptionName = $parentOptionName; |
||
67 | return $this; |
||
68 | } |
||
69 | |||
70 | /** |
||
71 | * Get image. |
||
72 | * |
||
73 | * @return image. |
||
74 | */ |
||
75 | public function getImage() |
||
79 | |||
80 | /** |
||
81 | * Set image. |
||
82 | * |
||
83 | * @param image the value to set. |
||
84 | */ |
||
85 | public function setImage($image) |
||
86 | { |
||
87 | $this->image = $image; |
||
88 | return $this; |
||
89 | } |
||
90 | |||
91 | /** |
||
92 | * Get productId. |
||
93 | * |
||
94 | * @return productId. |
||
95 | */ |
||
96 | public function getProductId() |
||
100 | |||
101 | /** |
||
102 | * Set productId. |
||
103 | * |
||
104 | * @param productId the value to set. |
||
105 | */ |
||
106 | public function setProductId($productId) |
||
107 | { |
||
108 | $this->productId = $productId; |
||
109 | return $this; |
||
110 | } |
||
111 | |||
112 | /** |
||
113 | * Get flatOptions. |
||
114 | * |
||
115 | * @return flatOptions. |
||
116 | */ |
||
117 | public function getFlatOptions() |
||
121 | |||
122 | /** |
||
123 | * Set flatOptions. |
||
124 | * |
||
125 | * @param flatOptions the value to set. |
||
126 | */ |
||
127 | public function setFlatOptions($flatOptions) |
||
128 | { |
||
129 | $this->flatOptions = $flatOptions; |
||
130 | return $this; |
||
131 | } |
||
132 | |||
133 | /** |
||
134 | * @return itemNumber |
||
135 | */ |
||
136 | public function getItemNumber() |
||
140 | |||
141 | /** |
||
142 | * @param $itemNumber |
||
143 | * @return self |
||
144 | */ |
||
145 | public function setItemNumber($itemNumber) |
||
146 | { |
||
147 | $this->itemNumber = $itemNumber; |
||
148 | return $this; |
||
149 | } |
||
150 | |||
151 | /** |
||
152 | * @return uom |
||
153 | */ |
||
154 | public function getUom() |
||
158 | |||
159 | /** |
||
160 | * @param $uom |
||
161 | * @return self |
||
162 | */ |
||
163 | public function setUom($uom) |
||
164 | { |
||
168 | } |
||
169 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.