@@ -28,6 +28,7 @@ discard block |
||
28 | 28 | /** |
29 | 29 | * @param string $name |
30 | 30 | * @param string $localeCode |
31 | + * @return void |
|
31 | 32 | */ |
32 | 33 | public function nameItIn($name, $localeCode); |
33 | 34 | |
@@ -50,11 +51,13 @@ discard block |
||
50 | 51 | |
51 | 52 | /** |
52 | 53 | * @param TaxonInterface $taxon |
54 | + * @return void |
|
53 | 55 | */ |
54 | 56 | public function selectMainTaxon(TaxonInterface $taxon); |
55 | 57 | |
56 | 58 | /** |
57 | 59 | * @param string $channelName |
60 | + * @return void |
|
58 | 61 | */ |
59 | 62 | public function checkChannel($channelName); |
60 | 63 | |
@@ -68,20 +71,26 @@ discard block |
||
68 | 71 | /** |
69 | 72 | * @param string $path |
70 | 73 | * @param string $code |
74 | + * @return void |
|
71 | 75 | */ |
72 | 76 | public function attachImage($path, $code = null); |
73 | 77 | |
74 | 78 | /** |
75 | 79 | * @param string $code |
76 | 80 | * @param string $path |
81 | + * @return void |
|
77 | 82 | */ |
78 | 83 | public function changeImageWithCode($code, $path); |
79 | 84 | |
80 | 85 | /** |
81 | 86 | * @param string $code |
87 | + * @return void |
|
82 | 88 | */ |
83 | 89 | public function removeImageWithCode($code); |
84 | 90 | |
91 | + /** |
|
92 | + * @return void |
|
93 | + */ |
|
85 | 94 | public function removeFirstImage(); |
86 | 95 | |
87 | 96 | /** |
@@ -29,6 +29,7 @@ discard block |
||
29 | 29 | public function isCodeDisabled(); |
30 | 30 | |
31 | 31 | /** |
32 | + * @param string $locale |
|
32 | 33 | * @return bool |
33 | 34 | */ |
34 | 35 | public function isSlugReadOnlyIn($locale); |
@@ -36,20 +37,26 @@ discard block |
||
36 | 37 | /** |
37 | 38 | * @param string $channelName |
38 | 39 | * @param int $price |
40 | + * @return void |
|
39 | 41 | */ |
40 | 42 | public function specifyPrice($channelName, $price); |
41 | 43 | |
42 | 44 | /** |
43 | 45 | * @param string $name |
44 | 46 | * @param string $localeCode |
47 | + * @return void |
|
45 | 48 | */ |
46 | 49 | public function nameItIn($name, $localeCode); |
47 | 50 | |
51 | + /** |
|
52 | + * @return void |
|
53 | + */ |
|
48 | 54 | public function addSelectedAttributes(); |
49 | 55 | |
50 | 56 | /** |
51 | 57 | * @param string $attributeName |
52 | 58 | * @param string $localeCode |
59 | + * @return void |
|
53 | 60 | */ |
54 | 61 | public function removeAttribute($attributeName, $localeCode); |
55 | 62 | |
@@ -82,11 +89,18 @@ discard block |
||
82 | 89 | |
83 | 90 | /** |
84 | 91 | * @param TaxonInterface $taxon |
92 | + * @return void |
|
85 | 93 | */ |
86 | 94 | public function selectMainTaxon(TaxonInterface $taxon); |
87 | 95 | |
96 | + /** |
|
97 | + * @return void |
|
98 | + */ |
|
88 | 99 | public function disableTracking(); |
89 | 100 | |
101 | + /** |
|
102 | + * @return void |
|
103 | + */ |
|
90 | 104 | public function enableTracking(); |
91 | 105 | |
92 | 106 | /** |
@@ -96,6 +110,7 @@ discard block |
||
96 | 110 | |
97 | 111 | /** |
98 | 112 | * @param string $locale |
113 | + * @return void |
|
99 | 114 | */ |
100 | 115 | public function enableSlugModification($locale); |
101 | 116 | |
@@ -109,20 +124,26 @@ discard block |
||
109 | 124 | /** |
110 | 125 | * @param string $path |
111 | 126 | * @param string $code |
127 | + * @return void |
|
112 | 128 | */ |
113 | 129 | public function attachImage($path, $code = null); |
114 | 130 | |
115 | 131 | /** |
116 | 132 | * @param string $code |
117 | 133 | * @param string $path |
134 | + * @return void |
|
118 | 135 | */ |
119 | 136 | public function changeImageWithCode($code, $path); |
120 | 137 | |
121 | 138 | /** |
122 | 139 | * @param string $code |
140 | + * @return void |
|
123 | 141 | */ |
124 | 142 | public function removeImageWithCode($code); |
125 | 143 | |
144 | + /** |
|
145 | + * @return void |
|
146 | + */ |
|
126 | 147 | public function removeFirstImage(); |
127 | 148 | |
128 | 149 | /** |
@@ -145,6 +166,7 @@ discard block |
||
145 | 166 | /** |
146 | 167 | * @param ProductAssociationTypeInterface $productAssociationType |
147 | 168 | * @param string[] $productsNames |
169 | + * @return void |
|
148 | 170 | */ |
149 | 171 | public function associateProducts(ProductAssociationTypeInterface $productAssociationType, array $productsNames); |
150 | 172 | |
@@ -159,6 +181,7 @@ discard block |
||
159 | 181 | /** |
160 | 182 | * @param string $productName |
161 | 183 | * @param ProductAssociationTypeInterface $productAssociationType |
184 | + * @return void |
|
162 | 185 | */ |
163 | 186 | public function removeAssociatedProduct($productName, ProductAssociationTypeInterface $productAssociationType); |
164 | 187 | |
@@ -172,6 +195,7 @@ discard block |
||
172 | 195 | |
173 | 196 | /** |
174 | 197 | * @param string $locale |
198 | + * @return void |
|
175 | 199 | */ |
176 | 200 | public function activateLanguageTab($locale); |
177 | 201 | |
@@ -185,6 +209,7 @@ discard block |
||
185 | 209 | /** |
186 | 210 | * @param string $slug |
187 | 211 | * @param string $locale |
212 | + * @return void |
|
188 | 213 | */ |
189 | 214 | public function specifySlugIn($slug, $locale); |
190 | 215 |
@@ -20,12 +20,14 @@ |
||
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 nameItIn($name, $language); |
31 | 33 | } |
@@ -21,6 +21,7 @@ |
||
21 | 21 | /** |
22 | 22 | * @param string $name |
23 | 23 | * @param string $languageCode |
24 | + * @return void |
|
24 | 25 | */ |
25 | 26 | public function nameItIn($name, $languageCode); |
26 | 27 |
@@ -20,11 +20,13 @@ |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param array $parameters |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function accept(array $parameters); |
25 | 26 | |
26 | 27 | /** |
27 | 28 | * @param array $parameters |
29 | + * @return void |
|
28 | 30 | */ |
29 | 31 | public function reject(array $parameters); |
30 | 32 | } |
@@ -20,16 +20,19 @@ |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param string $title |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function specifyTitle($title); |
25 | 26 | |
26 | 27 | /** |
27 | 28 | * @param string $comment |
29 | + * @return void |
|
28 | 30 | */ |
29 | 31 | public function specifyComment($comment); |
30 | 32 | |
31 | 33 | /** |
32 | 34 | * @param string $rating |
35 | + * @return void |
|
33 | 36 | */ |
34 | 37 | public function chooseRating($rating); |
35 | 38 |
@@ -23,6 +23,7 @@ discard block |
||
23 | 23 | /** |
24 | 24 | * @param int $price |
25 | 25 | * @param string $channel |
26 | + * @return void |
|
26 | 27 | */ |
27 | 28 | public function specifyPrice($price, $channel); |
28 | 29 | |
@@ -31,33 +32,39 @@ discard block |
||
31 | 32 | * @param int $width |
32 | 33 | * @param int $depth |
33 | 34 | * @param int $weight |
35 | + * @return void |
|
34 | 36 | */ |
35 | 37 | public function specifyHeightWidthDepthAndWeight($height, $width, $depth, $weight); |
36 | 38 | |
37 | 39 | /** |
38 | 40 | * @param string $code |
41 | + * @return void |
|
39 | 42 | */ |
40 | 43 | public function specifyCode($code); |
41 | 44 | |
42 | 45 | /** |
43 | 46 | * @param int $currentStock |
47 | + * @return void |
|
44 | 48 | */ |
45 | 49 | public function specifyCurrentStock($currentStock); |
46 | 50 | |
47 | 51 | /** |
48 | 52 | * @param string $name |
49 | 53 | * @param string $language |
54 | + * @return void |
|
50 | 55 | */ |
51 | 56 | public function nameItIn($name, $language); |
52 | 57 | |
53 | 58 | /** |
54 | 59 | * @param string $optionName |
55 | 60 | * @param string $optionValue |
61 | + * @return void |
|
56 | 62 | */ |
57 | 63 | public function selectOption($optionName, $optionValue); |
58 | 64 | |
59 | 65 | /** |
60 | 66 | * @param string $name |
67 | + * @return void |
|
61 | 68 | */ |
62 | 69 | public function choosePricingCalculator($name); |
63 | 70 | |
@@ -65,6 +72,7 @@ discard block |
||
65 | 72 | * @param int $price |
66 | 73 | * @param ChannelInterface $channel |
67 | 74 | * @param CurrencyInterface $currency |
75 | + * @return void |
|
68 | 76 | */ |
69 | 77 | public function specifyPriceForChannelAndCurrency($price, ChannelInterface $channel, CurrencyInterface $currency); |
70 | 78 | |
@@ -75,6 +83,7 @@ discard block |
||
75 | 83 | |
76 | 84 | /** |
77 | 85 | * @param string $shippingCategoryName |
86 | + * @return void |
|
78 | 87 | */ |
79 | 88 | public function selectShippingCategory($shippingCategoryName); |
80 | 89 |
@@ -18,23 +18,29 @@ |
||
18 | 18 | */ |
19 | 19 | interface GeneratePageInterface extends SymfonyPageInterface |
20 | 20 | { |
21 | + /** |
|
22 | + * @return void |
|
23 | + */ |
|
21 | 24 | public function generate(); |
22 | 25 | |
23 | 26 | /** |
24 | 27 | * @param int $nth |
25 | 28 | * @param int $price |
26 | 29 | * @param string $channelName |
30 | + * @return void |
|
27 | 31 | */ |
28 | 32 | public function specifyPrice($nth, $price, $channelName); |
29 | 33 | |
30 | 34 | /** |
31 | 35 | * @param int $nth |
32 | 36 | * @param string $code |
37 | + * @return void |
|
33 | 38 | */ |
34 | 39 | public function specifyCode($nth, $code); |
35 | 40 | |
36 | 41 | /** |
37 | 42 | * @param int $nth |
43 | + * @return void |
|
38 | 44 | */ |
39 | 45 | public function removeVariant($nth); |
40 | 46 |
@@ -37,8 +37,12 @@ |
||
37 | 37 | * @param string $name |
38 | 38 | * |
39 | 39 | * @param int $position |
40 | + * @return void |
|
40 | 41 | */ |
41 | 42 | public function setPosition($name, $position); |
42 | 43 | |
44 | + /** |
|
45 | + * @return void |
|
46 | + */ |
|
43 | 47 | public function savePositions(); |
44 | 48 | } |