@@ -20,6 +20,7 @@ |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param OrderInterface $order |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function saveAddresses(OrderInterface $order); |
25 | 26 | } |
@@ -22,11 +22,13 @@ discard block |
||
22 | 22 | * @param OrderInterface $order |
23 | 23 | * |
24 | 24 | * @throws \InvalidArgumentException |
25 | + * @return void |
|
25 | 26 | */ |
26 | 27 | public function cancel(OrderInterface $order); |
27 | 28 | |
28 | 29 | /** |
29 | 30 | * @param OrderInterface $order |
31 | + * @return void |
|
30 | 32 | */ |
31 | 33 | public function hold(OrderInterface $order); |
32 | 34 | |
@@ -34,6 +36,7 @@ discard block |
||
34 | 36 | * @param OrderInterface $order |
35 | 37 | * |
36 | 38 | * @throws \InvalidArgumentException |
39 | + * @return void |
|
37 | 40 | */ |
38 | 41 | public function sell(OrderInterface $order); |
39 | 42 | } |
@@ -22,6 +22,7 @@ |
||
22 | 22 | /** |
23 | 23 | * @param ChannelInterface $channel |
24 | 24 | * @param string $localeCode |
25 | + * @return void |
|
25 | 26 | */ |
26 | 27 | public function set(ChannelInterface $channel, $localeCode); |
27 | 28 |
@@ -27,6 +27,7 @@ discard block |
||
27 | 27 | |
28 | 28 | /** |
29 | 29 | * @param string $firstName |
30 | + * @return void |
|
30 | 31 | */ |
31 | 32 | public function setFirstName($firstName); |
32 | 33 | |
@@ -37,6 +38,7 @@ discard block |
||
37 | 38 | |
38 | 39 | /** |
39 | 40 | * @param string $lastName |
41 | + * @return void |
|
40 | 42 | */ |
41 | 43 | public function setLastName($lastName); |
42 | 44 | |
@@ -47,6 +49,7 @@ discard block |
||
47 | 49 | |
48 | 50 | /** |
49 | 51 | * @param string $code |
52 | + * @return void |
|
50 | 53 | */ |
51 | 54 | public function setLocaleCode($code); |
52 | 55 | } |
@@ -33,16 +33,19 @@ discard block |
||
33 | 33 | |
34 | 34 | /** |
35 | 35 | * @param AddressInterface|null $defaultAddress |
36 | + * @return void |
|
36 | 37 | */ |
37 | 38 | public function setDefaultAddress(AddressInterface $defaultAddress = null); |
38 | 39 | |
39 | 40 | /** |
40 | 41 | * @param AddressInterface $address |
42 | + * @return void |
|
41 | 43 | */ |
42 | 44 | public function addAddress(AddressInterface $address); |
43 | 45 | |
44 | 46 | /** |
45 | 47 | * @param AddressInterface $address |
48 | + * @return void |
|
46 | 49 | */ |
47 | 50 | public function removeAddress(AddressInterface $address); |
48 | 51 | |
@@ -65,6 +68,7 @@ discard block |
||
65 | 68 | |
66 | 69 | /** |
67 | 70 | * @param BaseUserInterface|null $user |
71 | + * @return void |
|
68 | 72 | */ |
69 | 73 | public function setUser(BaseUserInterface $user = null); |
70 | 74 |
@@ -44,11 +44,13 @@ |
||
44 | 44 | |
45 | 45 | /** |
46 | 46 | * @param ImageInterface $image |
47 | + * @return void |
|
47 | 48 | */ |
48 | 49 | public function addImage(ImageInterface $image); |
49 | 50 | |
50 | 51 | /** |
51 | 52 | * @param ImageInterface $image |
53 | + * @return void |
|
52 | 54 | */ |
53 | 55 | public function removeImage(ImageInterface $image); |
54 | 56 | } |
@@ -44,6 +44,7 @@ discard block |
||
44 | 44 | |
45 | 45 | /** |
46 | 46 | * @param AddressInterface $address |
47 | + * @return void |
|
47 | 48 | */ |
48 | 49 | public function setShippingAddress(AddressInterface $address); |
49 | 50 | |
@@ -54,6 +55,7 @@ discard block |
||
54 | 55 | |
55 | 56 | /** |
56 | 57 | * @param AddressInterface $address |
58 | + * @return void |
|
57 | 59 | */ |
58 | 60 | public function setBillingAddress(AddressInterface $address); |
59 | 61 | |
@@ -64,6 +66,7 @@ discard block |
||
64 | 66 | |
65 | 67 | /** |
66 | 68 | * @param string $checkoutState |
69 | + * @return void |
|
67 | 70 | */ |
68 | 71 | public function setCheckoutState($checkoutState); |
69 | 72 | |
@@ -74,6 +77,7 @@ discard block |
||
74 | 77 | |
75 | 78 | /** |
76 | 79 | * @param string $paymentState |
80 | + * @return void |
|
77 | 81 | */ |
78 | 82 | public function setPaymentState($paymentState); |
79 | 83 | |
@@ -101,14 +105,19 @@ discard block |
||
101 | 105 | |
102 | 106 | /** |
103 | 107 | * @param ShipmentInterface $shipment |
108 | + * @return void |
|
104 | 109 | */ |
105 | 110 | public function addShipment(ShipmentInterface $shipment); |
106 | 111 | |
107 | 112 | /** |
108 | 113 | * @param ShipmentInterface $shipment |
114 | + * @return void |
|
109 | 115 | */ |
110 | 116 | public function removeShipment(ShipmentInterface $shipment); |
111 | 117 | |
118 | + /** |
|
119 | + * @return void |
|
120 | + */ |
|
112 | 121 | public function removeShipments(); |
113 | 122 | |
114 | 123 | /** |
@@ -127,6 +136,7 @@ discard block |
||
127 | 136 | * @param string |
128 | 137 | * |
129 | 138 | * @throws \InvalidArgumentException |
139 | + * @return void |
|
130 | 140 | */ |
131 | 141 | public function setCurrencyCode($currencyCode); |
132 | 142 | |
@@ -139,11 +149,13 @@ discard block |
||
139 | 149 | |
140 | 150 | /** |
141 | 151 | * @param string |
152 | + * @return void |
|
142 | 153 | */ |
143 | 154 | public function setLocaleCode($localeCode); |
144 | 155 | |
145 | 156 | /** |
146 | 157 | * @param BaseCouponInterface $coupon |
158 | + * @return void |
|
147 | 159 | */ |
148 | 160 | public function setPromotionCoupon(BaseCouponInterface $coupon = null); |
149 | 161 | |
@@ -154,6 +166,7 @@ discard block |
||
154 | 166 | |
155 | 167 | /** |
156 | 168 | * @param string $state |
169 | + * @return void |
|
157 | 170 | */ |
158 | 171 | public function setShippingState($state); |
159 | 172 | |
@@ -186,6 +199,7 @@ discard block |
||
186 | 199 | |
187 | 200 | /** |
188 | 201 | * @param string $tokenValue |
202 | + * @return void |
|
189 | 203 | */ |
190 | 204 | public function setTokenValue($tokenValue); |
191 | 205 | |
@@ -196,6 +210,7 @@ discard block |
||
196 | 210 | |
197 | 211 | /** |
198 | 212 | * @param string $customerIp |
213 | + * @return void |
|
199 | 214 | */ |
200 | 215 | public function setCustomerIp($customerIp); |
201 | 216 | } |
@@ -47,6 +47,7 @@ discard block |
||
47 | 47 | * @param string $variantSelectionMethod |
48 | 48 | * |
49 | 49 | * @throws \InvalidArgumentException |
50 | + * @return void |
|
50 | 51 | */ |
51 | 52 | public function setVariantSelectionMethod($variantSelectionMethod); |
52 | 53 | |
@@ -67,6 +68,7 @@ discard block |
||
67 | 68 | |
68 | 69 | /** |
69 | 70 | * @param string $shortDescription |
71 | + * @return void |
|
70 | 72 | */ |
71 | 73 | public function setShortDescription($shortDescription); |
72 | 74 | |
@@ -77,6 +79,7 @@ discard block |
||
77 | 79 | |
78 | 80 | /** |
79 | 81 | * @param TaxonInterface $mainTaxon |
82 | + * @return void |
|
80 | 83 | */ |
81 | 84 | public function setMainTaxon(TaxonInterface $mainTaxon = null); |
82 | 85 |
@@ -25,6 +25,7 @@ discard block |
||
25 | 25 | |
26 | 26 | /** |
27 | 27 | * @param ProductInterface $product |
28 | + * @return void |
|
28 | 29 | */ |
29 | 30 | public function setProduct(ProductInterface $product); |
30 | 31 | |
@@ -35,6 +36,7 @@ discard block |
||
35 | 36 | |
36 | 37 | /** |
37 | 38 | * @param TaxonInterface $taxon |
39 | + * @return void |
|
38 | 40 | */ |
39 | 41 | public function setTaxon(TaxonInterface $taxon); |
40 | 42 | |
@@ -45,6 +47,7 @@ discard block |
||
45 | 47 | |
46 | 48 | /** |
47 | 49 | * @param int $position |
50 | + * @return void |
|
48 | 51 | */ |
49 | 52 | public function setPosition($position); |
50 | 53 | } |