@@ -21,53 +21,65 @@ |
||
21 | 21 | { |
22 | 22 | /** |
23 | 23 | * @param int $price |
24 | + * @return void |
|
24 | 25 | */ |
25 | 26 | public function specifyPrice($price); |
26 | 27 | |
27 | 28 | /** |
28 | 29 | * @param string $code |
30 | + * @return void |
|
29 | 31 | */ |
30 | 32 | public function specifyCode($code); |
31 | 33 | |
32 | 34 | /** |
33 | 35 | * @param string $name |
34 | 36 | * @param string $localeCode |
37 | + * @return void |
|
35 | 38 | */ |
36 | 39 | public function nameItIn($name, $localeCode); |
37 | 40 | |
38 | 41 | /** |
39 | 42 | * @param string $slug |
43 | + * @return void |
|
40 | 44 | */ |
41 | 45 | public function specifySlug($slug); |
42 | 46 | |
43 | 47 | /** |
44 | 48 | * @param string $attribute |
45 | 49 | * @param string $value |
50 | + * @return void |
|
46 | 51 | */ |
47 | 52 | public function addAttribute($attribute, $value); |
48 | 53 | |
49 | 54 | /** |
50 | 55 | * @param string $attribute |
56 | + * @return void |
|
51 | 57 | */ |
52 | 58 | public function removeAttribute($attribute); |
53 | 59 | |
54 | 60 | /** |
55 | 61 | * @param string $path |
56 | 62 | * @param string $code |
63 | + * @return void |
|
57 | 64 | */ |
58 | 65 | public function attachImage($path, $code = null); |
59 | 66 | |
67 | + /** |
|
68 | + * @return void |
|
69 | + */ |
|
60 | 70 | public function enableSlugModification(); |
61 | 71 | |
62 | 72 | /** |
63 | 73 | * @param ProductAssociationTypeInterface $productAssociationType |
64 | 74 | * @param string[] $productsNames |
75 | + * @return void |
|
65 | 76 | */ |
66 | 77 | public function associateProducts(ProductAssociationTypeInterface $productAssociationType, array $productsNames); |
67 | 78 | |
68 | 79 | /** |
69 | 80 | * @param string $productName |
70 | 81 | * @param ProductAssociationTypeInterface $productAssociationType |
82 | + * @return void |
|
71 | 83 | */ |
72 | 84 | public function removeAssociatedProduct($productName, ProductAssociationTypeInterface $productAssociationType); |
73 | 85 | } |
@@ -33,12 +33,14 @@ discard block |
||
33 | 33 | |
34 | 34 | /** |
35 | 35 | * @param int $price |
36 | + * @return void |
|
36 | 37 | */ |
37 | 38 | public function specifyPrice($price); |
38 | 39 | |
39 | 40 | /** |
40 | 41 | * @param string $name |
41 | 42 | * @param string $localeCode |
43 | + * @return void |
|
42 | 44 | */ |
43 | 45 | public function nameItIn($name, $localeCode); |
44 | 46 | |
@@ -65,11 +67,18 @@ discard block |
||
65 | 67 | |
66 | 68 | /** |
67 | 69 | * @param TaxonInterface $taxon |
70 | + * @return void |
|
68 | 71 | */ |
69 | 72 | public function selectMainTaxon(TaxonInterface $taxon); |
70 | 73 | |
74 | + /** |
|
75 | + * @return void |
|
76 | + */ |
|
71 | 77 | public function disableTracking(); |
72 | 78 | |
79 | + /** |
|
80 | + * @return void |
|
81 | + */ |
|
73 | 82 | public function enableTracking(); |
74 | 83 | |
75 | 84 | /** |
@@ -87,20 +96,26 @@ discard block |
||
87 | 96 | /** |
88 | 97 | * @param string $path |
89 | 98 | * @param string $code |
99 | + * @return void |
|
90 | 100 | */ |
91 | 101 | public function attachImage($path, $code = null); |
92 | 102 | |
93 | 103 | /** |
94 | 104 | * @param string $code |
95 | 105 | * @param string $path |
106 | + * @return void |
|
96 | 107 | */ |
97 | 108 | public function changeImageWithCode($code, $path); |
98 | 109 | |
99 | 110 | /** |
100 | 111 | * @param string $code |
112 | + * @return void |
|
101 | 113 | */ |
102 | 114 | public function removeImageWithCode($code); |
103 | 115 | |
116 | + /** |
|
117 | + * @return void |
|
118 | + */ |
|
104 | 119 | public function removeFirstImage(); |
105 | 120 | |
106 | 121 | /** |
@@ -123,6 +138,7 @@ discard block |
||
123 | 138 | /** |
124 | 139 | * @param ProductAssociationTypeInterface $productAssociationType |
125 | 140 | * @param string[] $productsNames |
141 | + * @return void |
|
126 | 142 | */ |
127 | 143 | public function associateProducts(ProductAssociationTypeInterface $productAssociationType, array $productsNames); |
128 | 144 | |
@@ -137,6 +153,7 @@ discard block |
||
137 | 153 | /** |
138 | 154 | * @param string $productName |
139 | 155 | * @param ProductAssociationTypeInterface $productAssociationType |
156 | + * @return void |
|
140 | 157 | */ |
141 | 158 | public function removeAssociatedProduct($productName, ProductAssociationTypeInterface $productAssociationType); |
142 | 159 | } |
@@ -20,24 +20,31 @@ |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param string $title |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function titleReview($title); |
25 | 26 | |
26 | 27 | /** |
27 | 28 | * @param string $comment |
29 | + * @return void |
|
28 | 30 | */ |
29 | 31 | public function setComment($comment); |
30 | 32 | |
31 | 33 | /** |
32 | 34 | * @param string $author |
35 | + * @return void |
|
33 | 36 | */ |
34 | 37 | public function setAuthor($author); |
35 | 38 | |
36 | 39 | /** |
37 | 40 | * @param int $rate |
41 | + * @return void |
|
38 | 42 | */ |
39 | 43 | public function rateReview($rate); |
40 | 44 | |
45 | + /** |
|
46 | + * @return void |
|
47 | + */ |
|
41 | 48 | public function submitReview(); |
42 | 49 | |
43 | 50 | /** |
@@ -28,6 +28,7 @@ discard block |
||
28 | 28 | |
29 | 29 | /** |
30 | 30 | * @param string $code |
31 | + * @return void |
|
31 | 32 | */ |
32 | 33 | public function setCode($code); |
33 | 34 | |
@@ -38,11 +39,18 @@ discard block |
||
38 | 39 | |
39 | 40 | /** |
40 | 41 | * @param bool $enabled |
42 | + * @return void |
|
41 | 43 | */ |
42 | 44 | public function setEnabled($enabled); |
43 | 45 | |
46 | + /** |
|
47 | + * @return void |
|
48 | + */ |
|
44 | 49 | public function enable(); |
45 | 50 | |
51 | + /** |
|
52 | + * @return void |
|
53 | + */ |
|
46 | 54 | public function disable(); |
47 | 55 | |
48 | 56 | /** |
@@ -52,6 +60,7 @@ discard block |
||
52 | 60 | |
53 | 61 | /** |
54 | 62 | * @param string $subject |
63 | + * @return void |
|
55 | 64 | */ |
56 | 65 | public function setSubject($subject); |
57 | 66 | |
@@ -62,6 +71,7 @@ discard block |
||
62 | 71 | |
63 | 72 | /** |
64 | 73 | * @param string $content |
74 | + * @return void |
|
65 | 75 | */ |
66 | 76 | public function setContent($content); |
67 | 77 | |
@@ -72,6 +82,7 @@ discard block |
||
72 | 82 | |
73 | 83 | /** |
74 | 84 | * @param string $template |
85 | + * @return void |
|
75 | 86 | */ |
76 | 87 | public function setTemplate($template); |
77 | 88 | |
@@ -82,6 +93,7 @@ discard block |
||
82 | 93 | |
83 | 94 | /** |
84 | 95 | * @param string $senderName |
96 | + * @return void |
|
85 | 97 | */ |
86 | 98 | public function setSenderName($senderName); |
87 | 99 | |
@@ -92,6 +104,7 @@ discard block |
||
92 | 104 | |
93 | 105 | /** |
94 | 106 | * @param string $senderAddress |
107 | + * @return void |
|
95 | 108 | */ |
96 | 109 | public function setSenderAddress($senderAddress); |
97 | 110 | } |