@@ -41,6 +41,7 @@ discard block |
||
41 | 41 | |
42 | 42 | /** |
43 | 43 | * @param null|TaxonInterface $taxon |
44 | + * @return void |
|
44 | 45 | */ |
45 | 46 | public function setParent(TaxonInterface $taxon = null); |
46 | 47 | |
@@ -63,11 +64,13 @@ discard block |
||
63 | 64 | |
64 | 65 | /** |
65 | 66 | * @param TaxonInterface $taxon |
67 | + * @return void |
|
66 | 68 | */ |
67 | 69 | public function addChild(TaxonInterface $taxon); |
68 | 70 | |
69 | 71 | /** |
70 | 72 | * @param TaxonInterface $taxon |
73 | + * @return void |
|
71 | 74 | */ |
72 | 75 | public function removeChild(TaxonInterface $taxon); |
73 | 76 | |
@@ -78,6 +81,7 @@ discard block |
||
78 | 81 | |
79 | 82 | /** |
80 | 83 | * @param string $name |
84 | + * @return void |
|
81 | 85 | */ |
82 | 86 | public function setName($name); |
83 | 87 | |
@@ -88,6 +92,7 @@ discard block |
||
88 | 92 | |
89 | 93 | /** |
90 | 94 | * @param string $permalink |
95 | + * @return void |
|
91 | 96 | */ |
92 | 97 | public function setPermalink($permalink); |
93 | 98 | |
@@ -98,6 +103,7 @@ discard block |
||
98 | 103 | |
99 | 104 | /** |
100 | 105 | * @param int $left |
106 | + * @return void |
|
101 | 107 | */ |
102 | 108 | public function setLeft($left); |
103 | 109 | |
@@ -108,6 +114,7 @@ discard block |
||
108 | 114 | |
109 | 115 | /** |
110 | 116 | * @param int $right |
117 | + * @return void |
|
111 | 118 | */ |
112 | 119 | public function setRight($right); |
113 | 120 | |
@@ -118,6 +125,7 @@ discard block |
||
118 | 125 | |
119 | 126 | /** |
120 | 127 | * @param int $level |
128 | + * @return void |
|
121 | 129 | */ |
122 | 130 | public function setLevel($level); |
123 | 131 | } |
@@ -27,6 +27,7 @@ |
||
27 | 27 | |
28 | 28 | /** |
29 | 29 | * @param string $value |
30 | + * @return void |
|
30 | 31 | */ |
31 | 32 | public function setValue($value); |
32 | 33 | } |
@@ -29,7 +29,7 @@ |
||
29 | 29 | { |
30 | 30 | /** |
31 | 31 | * @param Request $request |
32 | - * @return \Symfony\Component\HttpFoundation\RedirectResponse |
|
32 | + * @return JsonResponse |
|
33 | 33 | */ |
34 | 34 | public function updatePositionsAction(Request $request) |
35 | 35 | { |
@@ -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 | |
@@ -137,6 +147,7 @@ discard block |
||
137 | 147 | |
138 | 148 | /** |
139 | 149 | * @param float $exchangeRate |
150 | + * @return void |
|
140 | 151 | */ |
141 | 152 | public function setExchangeRate($exchangeRate); |
142 | 153 | |
@@ -149,11 +160,13 @@ discard block |
||
149 | 160 | |
150 | 161 | /** |
151 | 162 | * @param string |
163 | + * @return void |
|
152 | 164 | */ |
153 | 165 | public function setLocaleCode($localeCode); |
154 | 166 | |
155 | 167 | /** |
156 | 168 | * @param BaseCouponInterface $coupon |
169 | + * @return void |
|
157 | 170 | */ |
158 | 171 | public function setPromotionCoupon(BaseCouponInterface $coupon = null); |
159 | 172 | |
@@ -164,6 +177,7 @@ discard block |
||
164 | 177 | |
165 | 178 | /** |
166 | 179 | * @param string $state |
180 | + * @return void |
|
167 | 181 | */ |
168 | 182 | public function setShippingState($state); |
169 | 183 | |
@@ -189,6 +203,7 @@ discard block |
||
189 | 203 | |
190 | 204 | /** |
191 | 205 | * @param string $tokenValue |
206 | + * @return void |
|
192 | 207 | */ |
193 | 208 | public function setTokenValue($tokenValue); |
194 | 209 | |
@@ -204,6 +219,7 @@ discard block |
||
204 | 219 | |
205 | 220 | /** |
206 | 221 | * @param string $customerIp |
222 | + * @return void |
|
207 | 223 | */ |
208 | 224 | public function setCustomerIp($customerIp); |
209 | 225 | } |
@@ -39,6 +39,7 @@ discard block |
||
39 | 39 | * Sets all option values. |
40 | 40 | * |
41 | 41 | * @param Collection $optionValues |
42 | + * @return void |
|
42 | 43 | */ |
43 | 44 | public function setValues(Collection $optionValues); |
44 | 45 | |
@@ -46,6 +47,7 @@ discard block |
||
46 | 47 | * Adds option value. |
47 | 48 | * |
48 | 49 | * @param OptionValueInterface $optionValue |
50 | + * @return void |
|
49 | 51 | */ |
50 | 52 | public function addValue(OptionValueInterface $optionValue); |
51 | 53 | |
@@ -53,6 +55,7 @@ discard block |
||
53 | 55 | * Removes option value. |
54 | 56 | * |
55 | 57 | * @param OptionValueInterface $optionValue |
58 | + * @return void |
|
56 | 59 | */ |
57 | 60 | public function removeValue(OptionValueInterface $optionValue); |
58 | 61 |
@@ -27,6 +27,7 @@ discard block |
||
27 | 27 | |
28 | 28 | /** |
29 | 29 | * @param OptionInterface $option |
30 | + * @return void |
|
30 | 31 | */ |
31 | 32 | public function setOption(OptionInterface $option = null); |
32 | 33 | |
@@ -41,6 +42,7 @@ discard block |
||
41 | 42 | * Set internal value. |
42 | 43 | * |
43 | 44 | * @param string $value |
45 | + * @return void |
|
44 | 46 | */ |
45 | 47 | public function setValue($value); |
46 | 48 |
@@ -27,6 +27,7 @@ discard block |
||
27 | 27 | |
28 | 28 | /** |
29 | 29 | * @param OptionInterface $option |
30 | + * @return void |
|
30 | 31 | */ |
31 | 32 | public function setOption(OptionInterface $option = null); |
32 | 33 | |
@@ -41,6 +42,7 @@ discard block |
||
41 | 42 | * Set internal value. |
42 | 43 | * |
43 | 44 | * @param string $value |
45 | + * @return void |
|
44 | 46 | */ |
45 | 47 | public function setValue($value); |
46 | 48 |
@@ -174,6 +174,8 @@ discard block |
||
174 | 174 | } |
175 | 175 | |
176 | 176 | /** |
177 | + * @param string $code |
|
178 | + * @param string $name |
|
177 | 179 | * @return ChannelInterface |
178 | 180 | */ |
179 | 181 | private function createChannel($code, $name) |
@@ -197,6 +199,7 @@ discard block |
||
197 | 199 | } |
198 | 200 | |
199 | 201 | /** |
202 | + * @param string $currencyCode |
|
200 | 203 | * @return CurrencyInterface |
201 | 204 | */ |
202 | 205 | private function provideCurrency($currencyCode = null) |