@@ -20,6 +20,7 @@ discard block |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param string $shippingMethod |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function selectShippingMethod($shippingMethod); |
25 | 26 | |
@@ -50,10 +51,19 @@ discard block |
||
50 | 51 | */ |
51 | 52 | public function getItemSubtotal($itemName); |
52 | 53 | |
54 | + /** |
|
55 | + * @return void |
|
56 | + */ |
|
53 | 57 | public function nextStep(); |
54 | 58 | |
59 | + /** |
|
60 | + * @return void |
|
61 | + */ |
|
55 | 62 | public function changeAddress(); |
56 | 63 | |
64 | + /** |
|
65 | + * @return void |
|
66 | + */ |
|
57 | 67 | public function changeAddressByStepLabel(); |
58 | 68 | |
59 | 69 | /** |
@@ -25,6 +25,7 @@ discard block |
||
25 | 25 | /** |
26 | 26 | * @param string $name |
27 | 27 | * @param string $languageCode |
28 | + * @return void |
|
28 | 29 | */ |
29 | 30 | public function nameItIn($name, $languageCode); |
30 | 31 | |
@@ -36,11 +37,13 @@ discard block |
||
36 | 37 | /** |
37 | 38 | * @param string $code |
38 | 39 | * @param string $value |
40 | + * @return void |
|
39 | 41 | */ |
40 | 42 | public function addOptionValue($code, $value); |
41 | 43 | |
42 | 44 | /** |
43 | 45 | * @param string $optionValue |
46 | + * @return void |
|
44 | 47 | */ |
45 | 48 | public function removeOptionValue($optionValue); |
46 | 49 | } |
@@ -22,6 +22,7 @@ discard block |
||
22 | 22 | { |
23 | 23 | /** |
24 | 24 | * @throws ElementNotFoundException |
25 | + * @return void |
|
25 | 26 | */ |
26 | 27 | public function addToCart(); |
27 | 28 | |
@@ -29,6 +30,7 @@ discard block |
||
29 | 30 | * @param string $quantity |
30 | 31 | * |
31 | 32 | * @throws ElementNotFoundException |
33 | + * @return void |
|
32 | 34 | */ |
33 | 35 | public function addToCartWithQuantity($quantity); |
34 | 36 | |
@@ -36,6 +38,7 @@ discard block |
||
36 | 38 | * @param string $variant |
37 | 39 | * |
38 | 40 | * @throws ElementNotFoundException |
41 | + * @return void |
|
39 | 42 | */ |
40 | 43 | public function addToCartWithVariant($variant); |
41 | 44 | |
@@ -44,6 +47,7 @@ discard block |
||
44 | 47 | * @param string $optionValue |
45 | 48 | * |
46 | 49 | * @throws ElementNotFoundException |
50 | + * @return void |
|
47 | 51 | */ |
48 | 52 | public function addToCartWithOption(ProductOptionInterface $option, $optionValue); |
49 | 53 | |
@@ -59,6 +63,7 @@ discard block |
||
59 | 63 | |
60 | 64 | /** |
61 | 65 | * @param string $url |
66 | + * @return void |
|
62 | 67 | */ |
63 | 68 | public function visit($url); |
64 | 69 | |
@@ -83,6 +88,7 @@ discard block |
||
83 | 88 | |
84 | 89 | /** |
85 | 90 | * @param int $timeout |
91 | + * @return void |
|
86 | 92 | */ |
87 | 93 | public function waitForValidationErrors($timeout); |
88 | 94 | |
@@ -126,11 +132,13 @@ discard block |
||
126 | 132 | /** |
127 | 133 | * @param string $optionName |
128 | 134 | * @param string $optionValue |
135 | + * @return void |
|
129 | 136 | */ |
130 | 137 | public function selectOption($optionName, $optionValue); |
131 | 138 | |
132 | 139 | /** |
133 | 140 | * @param string $variantName |
141 | + * @return void |
|
134 | 142 | */ |
135 | 143 | public function selectVariant($variantName); |
136 | 144 |