@@ -24,6 +24,7 @@ discard block |
||
24 | 24 | * @param string $password |
25 | 25 | * |
26 | 26 | * @throws ElementNotFoundException |
27 | + * @return void |
|
27 | 28 | */ |
28 | 29 | public function logInAsExistingUser($login, $password); |
29 | 30 | |
@@ -31,6 +32,7 @@ discard block |
||
31 | 32 | * @param string $email |
32 | 33 | * |
33 | 34 | * @throws ElementNotFoundException |
35 | + * @return void |
|
34 | 36 | */ |
35 | 37 | public function proceedAsGuest($email); |
36 | 38 | } |
@@ -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 | |
@@ -35,5 +36,8 @@ discard block |
||
35 | 36 | */ |
36 | 37 | public function hasNoShippingMethodsMessage(); |
37 | 38 | |
39 | + /** |
|
40 | + * @return void |
|
41 | + */ |
|
38 | 42 | public function nextStep(); |
39 | 43 | } |
@@ -20,8 +20,12 @@ |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param string $shippingMethod |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function selectShippingMethod($shippingMethod); |
25 | 26 | |
27 | + /** |
|
28 | + * @return void |
|
29 | + */ |
|
26 | 30 | public function continueCheckout(); |
27 | 31 | } |
@@ -30,6 +30,7 @@ |
||
30 | 30 | * @param array $parameters |
31 | 31 | * |
32 | 32 | * @throws \InvalidArgumentException |
33 | + * @return void |
|
33 | 34 | */ |
34 | 35 | public function waitForResponse($timeout, array $parameters = []); |
35 | 36 | } |
@@ -20,6 +20,7 @@ discard block |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param PaymentInterface $payment |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function clickPayButtonForGivenPayment(PaymentInterface $payment); |
25 | 26 | |
@@ -28,6 +29,7 @@ discard block |
||
28 | 29 | * @param array $parameters |
29 | 30 | * |
30 | 31 | * @throws \InvalidArgumentException |
32 | + * @return void |
|
31 | 33 | */ |
32 | 34 | public function waitForResponse($timeout, array $parameters); |
33 | 35 |
@@ -23,6 +23,7 @@ discard block |
||
23 | 23 | { |
24 | 24 | /** |
25 | 25 | * @throws ElementNotFoundException |
26 | + * @return void |
|
26 | 27 | */ |
27 | 28 | public function addToCart(); |
28 | 29 | |
@@ -30,6 +31,7 @@ discard block |
||
30 | 31 | * @param string $quantity |
31 | 32 | * |
32 | 33 | * @throws ElementNotFoundException |
34 | + * @return void |
|
33 | 35 | */ |
34 | 36 | public function addToCartWithQuantity($quantity); |
35 | 37 | |
@@ -37,6 +39,7 @@ discard block |
||
37 | 39 | * @param string $variant |
38 | 40 | * |
39 | 41 | * @throws ElementNotFoundException |
42 | + * @return void |
|
40 | 43 | */ |
41 | 44 | public function addToCartWithVariant($variant); |
42 | 45 | |
@@ -45,6 +48,7 @@ discard block |
||
45 | 48 | * @param string $optionValue |
46 | 49 | * |
47 | 50 | * @throws ElementNotFoundException |
51 | + * @return void |
|
48 | 52 | */ |
49 | 53 | public function addToCartWithOption(OptionInterface $option, $optionValue); |
50 | 54 | |
@@ -55,6 +59,7 @@ discard block |
||
55 | 59 | |
56 | 60 | /** |
57 | 61 | * @param string $url |
62 | + * @return void |
|
58 | 63 | */ |
59 | 64 | public function visit($url); |
60 | 65 |
@@ -20,6 +20,7 @@ |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param string $email |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function register($email); |
25 | 26 |
@@ -91,8 +91,8 @@ |
||
91 | 91 | } |
92 | 92 | |
93 | 93 | /** |
94 | - * @param array $columns |
|
95 | - * @param array $fields |
|
94 | + * @param NodeElement[] $columns |
|
95 | + * @param string[] $fields |
|
96 | 96 | * |
97 | 97 | * @return bool |
98 | 98 | */ |
@@ -102,7 +102,7 @@ |
||
102 | 102 | |
103 | 103 | /** |
104 | 104 | * @param int $statusCode |
105 | - * @param mixed $streamMock |
|
105 | + * @param Mock $streamMock |
|
106 | 106 | * |
107 | 107 | * @return Mock |
108 | 108 | */ |