@@ -20,6 +20,7 @@ |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param string $taxonName |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function filterByTaxon($taxonName); |
25 | 26 | } |
@@ -29,8 +29,12 @@ |
||
29 | 29 | * @param string $productName |
30 | 30 | * |
31 | 31 | * @param int $position |
32 | + * @return void |
|
32 | 33 | */ |
33 | 34 | public function setPositionOfProduct($productName, $position); |
34 | 35 | |
36 | + /** |
|
37 | + * @return void |
|
38 | + */ |
|
35 | 39 | public function savePositions(); |
36 | 40 | } |
@@ -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 | } |