@@ -20,12 +20,14 @@ discard block |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param string $code |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function specifyCode($code); |
25 | 26 | |
26 | 27 | /** |
27 | 28 | * @param string $name |
28 | 29 | * @param string $language |
30 | + * @return void |
|
29 | 31 | */ |
30 | 32 | public function nameIt($name, $language); |
31 | 33 | |
@@ -36,6 +38,7 @@ discard block |
||
36 | 38 | |
37 | 39 | /** |
38 | 40 | * @param string $value |
41 | + * @return void |
|
39 | 42 | */ |
40 | 43 | public function addAttributeValue($value); |
41 | 44 | } |
@@ -22,6 +22,7 @@ |
||
22 | 22 | { |
23 | 23 | /** |
24 | 24 | * @param GatewayConfigInterface $gateway |
25 | + * @return void |
|
25 | 26 | */ |
26 | 27 | public function setGatewayConfig(GatewayConfigInterface $gateway); |
27 | 28 |
@@ -50,7 +50,7 @@ |
||
50 | 50 | |
51 | 51 | /** |
52 | 52 | * @param mixed $subjects |
53 | - * @param array|string[] $associationsPaths |
|
53 | + * @param string[] $associationsPaths |
|
54 | 54 | */ |
55 | 55 | public function hydrateAssociations($subjects, array $associationsPaths) |
56 | 56 | { |
@@ -23,6 +23,7 @@ |
||
23 | 23 | * @param ResourceInterface $resource |
24 | 24 | * @param RequestConfiguration $requestConfiguration |
25 | 25 | * @param ObjectManager $manager |
26 | + * @return void |
|
26 | 27 | */ |
27 | 28 | public function handle( |
28 | 29 | ResourceInterface $resource, |
@@ -27,6 +27,7 @@ discard block |
||
27 | 27 | |
28 | 28 | /** |
29 | 29 | * @param ProductVariantInterface|null $productVariant |
30 | + * @return void |
|
30 | 31 | */ |
31 | 32 | public function setProductVariant(ProductVariantInterface $productVariant = null); |
32 | 33 | |
@@ -37,6 +38,7 @@ discard block |
||
37 | 38 | |
38 | 39 | /** |
39 | 40 | * @param int $price |
41 | + * @return void |
|
40 | 42 | */ |
41 | 43 | public function setPrice($price); |
42 | 44 | |
@@ -47,6 +49,7 @@ discard block |
||
47 | 49 | |
48 | 50 | /** |
49 | 51 | * @param string $channelCode |
52 | + * @return void |
|
50 | 53 | */ |
51 | 54 | public function setChannelCode($channelCode); |
52 | 55 | |
@@ -57,6 +60,7 @@ discard block |
||
57 | 60 | |
58 | 61 | /** |
59 | 62 | * @param int $originalPrice |
63 | + * @return void |
|
60 | 64 | */ |
61 | 65 | public function setOriginalPrice($originalPrice); |
62 | 66 |
@@ -30,11 +30,13 @@ |
||
30 | 30 | |
31 | 31 | /** |
32 | 32 | * @param ProductVariantInterface $productVariant |
33 | + * @return void |
|
33 | 34 | */ |
34 | 35 | public function addProductVariant(ProductVariantInterface $productVariant); |
35 | 36 | |
36 | 37 | /** |
37 | 38 | * @param ProductVariantInterface $productVariant |
39 | + * @return void |
|
38 | 40 | */ |
39 | 41 | public function removeProductVariant(ProductVariantInterface $productVariant); |
40 | 42 |
@@ -20,6 +20,7 @@ |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param ShipmentInterface $shipment |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function sendConfirmationEmail(ShipmentInterface $shipment); |
25 | 26 | } |
@@ -19,6 +19,7 @@ |
||
19 | 19 | /** |
20 | 20 | * @param array $data |
21 | 21 | * @param array $recipients |
22 | + * @return void |
|
22 | 23 | */ |
23 | 24 | public function sendContactRequest(array $data, array $recipients); |
24 | 25 | } |
@@ -20,6 +20,7 @@ |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param OrderInterface $order |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function sendConfirmationEmail(OrderInterface $order); |
25 | 26 | } |