@@ -25,6 +25,7 @@ |
||
25 | 25 | |
26 | 26 | /** |
27 | 27 | * @param ProductInterface|null $product |
28 | + * @return void |
|
28 | 29 | */ |
29 | 30 | public function setProduct(ProductInterface $product = null); |
30 | 31 | } |
@@ -32,6 +32,7 @@ discard block |
||
32 | 32 | |
33 | 33 | /** |
34 | 34 | * @param int $position |
35 | + * @return void |
|
35 | 36 | */ |
36 | 37 | public function setPosition($position); |
37 | 38 | |
@@ -42,11 +43,13 @@ discard block |
||
42 | 43 | |
43 | 44 | /** |
44 | 45 | * @param ProductOptionValueInterface $optionValue |
46 | + * @return void |
|
45 | 47 | */ |
46 | 48 | public function addValue(ProductOptionValueInterface $optionValue); |
47 | 49 | |
48 | 50 | /** |
49 | 51 | * @param ProductOptionValueInterface $optionValue |
52 | + * @return void |
|
50 | 53 | */ |
51 | 54 | public function removeValue(ProductOptionValueInterface $optionValue); |
52 | 55 |
@@ -28,6 +28,7 @@ |
||
28 | 28 | |
29 | 29 | /** |
30 | 30 | * @param string $name |
31 | + * @return void |
|
31 | 32 | */ |
32 | 33 | public function setName($name); |
33 | 34 | } |
@@ -27,6 +27,7 @@ discard block |
||
27 | 27 | |
28 | 28 | /** |
29 | 29 | * @param ProductOptionInterface $option |
30 | + * @return void |
|
30 | 31 | */ |
31 | 32 | public function setOption(ProductOptionInterface $option = null); |
32 | 33 | |
@@ -37,6 +38,7 @@ discard block |
||
37 | 38 | |
38 | 39 | /** |
39 | 40 | * @param string $value |
41 | + * @return void |
|
40 | 42 | */ |
41 | 43 | public function setValue($value); |
42 | 44 |
@@ -28,6 +28,7 @@ |
||
28 | 28 | |
29 | 29 | /** |
30 | 30 | * @param string $name |
31 | + * @return void |
|
31 | 32 | */ |
32 | 33 | public function setName($name); |
33 | 34 | } |
@@ -28,6 +28,7 @@ discard block |
||
28 | 28 | |
29 | 29 | /** |
30 | 30 | * @param string $name |
31 | + * @return void |
|
31 | 32 | */ |
32 | 33 | public function setName($name); |
33 | 34 | |
@@ -38,6 +39,7 @@ discard block |
||
38 | 39 | |
39 | 40 | /** |
40 | 41 | * @param string $description |
42 | + * @return void |
|
41 | 43 | */ |
42 | 44 | public function setDescription($description); |
43 | 45 | |
@@ -48,11 +50,13 @@ discard block |
||
48 | 50 | |
49 | 51 | /** |
50 | 52 | * @param TaxRateInterface $rate |
53 | + * @return void |
|
51 | 54 | */ |
52 | 55 | public function addRate(TaxRateInterface $rate); |
53 | 56 | |
54 | 57 | /** |
55 | 58 | * @param TaxRateInterface $rate |
59 | + * @return void |
|
56 | 60 | */ |
57 | 61 | public function removeRate(TaxRateInterface $rate); |
58 | 62 |
@@ -21,12 +21,14 @@ |
||
21 | 21 | /** |
22 | 22 | * @param string $field |
23 | 23 | * @param string $type |
24 | + * @return void |
|
24 | 25 | */ |
25 | 26 | public function specifyFilterType($field, $type); |
26 | 27 | |
27 | 28 | /** |
28 | 29 | * @param string $field |
29 | 30 | * @param string $value |
31 | + * @return void |
|
30 | 32 | */ |
31 | 33 | public function specifyFilterValue($field, $value); |
32 | 34 | } |
@@ -25,15 +25,20 @@ |
||
25 | 25 | */ |
26 | 26 | public function hasValidationErrorWith($message); |
27 | 27 | |
28 | + /** |
|
29 | + * @return void |
|
30 | + */ |
|
28 | 31 | public function logIn(); |
29 | 32 | |
30 | 33 | /** |
31 | 34 | * @param string $password |
35 | + * @return void |
|
32 | 36 | */ |
33 | 37 | public function specifyPassword($password); |
34 | 38 | |
35 | 39 | /** |
36 | 40 | * @param string $username |
41 | + * @return void |
|
37 | 42 | */ |
38 | 43 | public function specifyUsername($username); |
39 | 44 | } |
@@ -130,6 +130,8 @@ |
||
130 | 130 | /** |
131 | 131 | * @Given I have proceeded order with :shippingMethodName shipping method and :paymentMethodName payment |
132 | 132 | * @When I proceed with :shippingMethodName shipping method and :paymentMethodName payment |
133 | + * @param string $shippingMethodName |
|
134 | + * @param string $paymentMethodName |
|
133 | 135 | */ |
134 | 136 | public function iProceedOrderWithShippingMethodAndPayment($shippingMethodName, $paymentMethodName) |
135 | 137 | { |