@@ -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 | } |
@@ -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 | } |
@@ -26,6 +26,7 @@ discard block |
||
26 | 26 | |
27 | 27 | /** |
28 | 28 | * @param \SplFileInfo $file |
29 | + * @return void |
|
29 | 30 | */ |
30 | 31 | public function setFile(\SplFileInfo $file); |
31 | 32 | |
@@ -41,6 +42,7 @@ discard block |
||
41 | 42 | |
42 | 43 | /** |
43 | 44 | * @param string $path |
45 | + * @return void |
|
44 | 46 | */ |
45 | 47 | public function setPath($path); |
46 | 48 | |
@@ -51,6 +53,7 @@ discard block |
||
51 | 53 | |
52 | 54 | /** |
53 | 55 | * @param ImageAwareInterface|null $owner |
56 | + * @return void |
|
54 | 57 | */ |
55 | 58 | public function setOwner(ImageAwareInterface $owner = null); |
56 | 59 | } |
@@ -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 | } |
@@ -32,11 +32,13 @@ |
||
32 | 32 | |
33 | 33 | /** |
34 | 34 | * @param ProductTaxonInterface $productTaxon |
35 | + * @return void |
|
35 | 36 | */ |
36 | 37 | public function addProductTaxon(ProductTaxonInterface $productTaxon); |
37 | 38 | |
38 | 39 | /** |
39 | 40 | * @param ProductTaxonInterface $productTaxon |
41 | + * @return void |
|
40 | 42 | */ |
41 | 43 | public function removeProductTaxon(ProductTaxonInterface $productTaxon); |
42 | 44 |