@@ -22,6 +22,7 @@ |
||
22 | 22 | /** |
23 | 23 | * @param ChannelInterface $channel |
24 | 24 | * @param string $currencyCode |
25 | + * @return void |
|
25 | 26 | */ |
26 | 27 | public function set(ChannelInterface $channel, $currencyCode); |
27 | 28 |
@@ -22,6 +22,7 @@ |
||
22 | 22 | * @param string $code |
23 | 23 | * |
24 | 24 | * @throws HandleException |
25 | + * @return void |
|
25 | 26 | */ |
26 | 27 | public function handle($code); |
27 | 28 | } |
@@ -22,6 +22,7 @@ |
||
22 | 22 | /** |
23 | 23 | * @param CustomerInterface $customer |
24 | 24 | * @param AddressInterface $address |
25 | + * @return void |
|
25 | 26 | */ |
26 | 27 | public function add(CustomerInterface $customer, AddressInterface $address); |
27 | 28 | } |
@@ -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,6 +33,7 @@ discard block |
||
33 | 33 | |
34 | 34 | /** |
35 | 35 | * @param CurrencyInterface $currency |
36 | + * @return void |
|
36 | 37 | */ |
37 | 38 | public function setBaseCurrency(CurrencyInterface $currency); |
38 | 39 | |
@@ -43,6 +44,7 @@ discard block |
||
43 | 44 | |
44 | 45 | /** |
45 | 46 | * @param LocaleInterface $locale |
47 | + * @return void |
|
46 | 48 | */ |
47 | 49 | public function setDefaultLocale(LocaleInterface $locale); |
48 | 50 | |
@@ -53,6 +55,7 @@ discard block |
||
53 | 55 | |
54 | 56 | /** |
55 | 57 | * @param ZoneInterface $defaultTaxZone |
58 | + * @return void |
|
56 | 59 | */ |
57 | 60 | public function setDefaultTaxZone(ZoneInterface $defaultTaxZone); |
58 | 61 | |
@@ -63,6 +66,7 @@ discard block |
||
63 | 66 | |
64 | 67 | /** |
65 | 68 | * @param string $taxCalculationStrategy |
69 | + * @return void |
|
66 | 70 | */ |
67 | 71 | public function setTaxCalculationStrategy($taxCalculationStrategy); |
68 | 72 | |
@@ -73,6 +77,7 @@ discard block |
||
73 | 77 | |
74 | 78 | /** |
75 | 79 | * @param string $themeName |
80 | + * @return void |
|
76 | 81 | */ |
77 | 82 | public function setThemeName($themeName); |
78 | 83 | |
@@ -83,6 +88,7 @@ discard block |
||
83 | 88 | |
84 | 89 | /** |
85 | 90 | * @param string $contactEmail |
91 | + * @return void |
|
86 | 92 | */ |
87 | 93 | public function setContactEmail($contactEmail); |
88 | 94 | } |
@@ -17,6 +17,7 @@ discard block |
||
17 | 17 | |
18 | 18 | /** |
19 | 19 | * @param ProductVariantInterface|null $productVariant |
20 | + * @return void |
|
20 | 21 | */ |
21 | 22 | public function setProductVariant(ProductVariantInterface $productVariant = null); |
22 | 23 | |
@@ -27,6 +28,7 @@ discard block |
||
27 | 28 | |
28 | 29 | /** |
29 | 30 | * @param int $price |
31 | + * @return void |
|
30 | 32 | */ |
31 | 33 | public function setPrice($price); |
32 | 34 | } |