@@ -15,5 +15,8 @@ |
||
15 | 15 | |
16 | 16 | interface ExpiredCartsRemoverInterface |
17 | 17 | { |
18 | + /** |
|
19 | + * @return void |
|
20 | + */ |
|
18 | 21 | public function remove(): void; |
19 | 22 | } |
@@ -17,5 +17,8 @@ |
||
17 | 17 | |
18 | 18 | interface PasswordUpdaterInterface |
19 | 19 | { |
20 | + /** |
|
21 | + * @return void |
|
22 | + */ |
|
20 | 23 | public function updatePassword(CredentialsHolderInterface $user): void; |
21 | 24 | } |
@@ -146,6 +146,7 @@ |
||
146 | 146 | |
147 | 147 | /** |
148 | 148 | * @Given the store (also )allows shipping with :name |
149 | + * @param string $name |
|
149 | 150 | */ |
150 | 151 | public function theStoreAllowsShippingMethodWithName($name) |
151 | 152 | { |
@@ -127,6 +127,7 @@ discard block |
||
127 | 127 | * @Given the store has a tax category :name with a code :code |
128 | 128 | * @Given the store has a tax category :name |
129 | 129 | * @Given the store has a tax category :name also |
130 | + * @param string $name |
|
130 | 131 | */ |
131 | 132 | public function theStoreHasTaxCategoryWithCode($name, $code = null) |
132 | 133 | { |
@@ -213,7 +214,7 @@ discard block |
||
213 | 214 | /** |
214 | 215 | * @param string $taxRateAmount |
215 | 216 | * |
216 | - * @return string |
|
217 | + * @return integer |
|
217 | 218 | */ |
218 | 219 | private function getAmountFromString($taxRateAmount) |
219 | 220 | { |
@@ -42,6 +42,7 @@ discard block |
||
42 | 42 | |
43 | 43 | /** |
44 | 44 | * @param string $fieldName |
45 | + * @return void |
|
45 | 46 | */ |
46 | 47 | public function sortBy($fieldName); |
47 | 48 | |
@@ -61,6 +62,7 @@ discard block |
||
61 | 62 | |
62 | 63 | /** |
63 | 64 | * @param array $parameters |
65 | + * @return void |
|
64 | 66 | */ |
65 | 67 | public function checkResourceOnPage(array $parameters): void; |
66 | 68 | |
@@ -69,7 +71,13 @@ discard block |
||
69 | 71 | */ |
70 | 72 | public function countItems(); |
71 | 73 | |
74 | + /** |
|
75 | + * @return void |
|
76 | + */ |
|
72 | 77 | public function filter(); |
73 | 78 | |
79 | + /** |
|
80 | + * @return void |
|
81 | + */ |
|
74 | 82 | public function bulkDelete(): void; |
75 | 83 | } |
@@ -50,7 +50,7 @@ |
||
50 | 50 | } |
51 | 51 | |
52 | 52 | /** |
53 | - * @return ProductInterface|null |
|
53 | + * @return \Sylius\Component\Product\Model\ProductInterface|null |
|
54 | 54 | */ |
55 | 55 | public function getProduct(): ?ProductInterface |
56 | 56 | { |
@@ -29,6 +29,7 @@ discard block |
||
29 | 29 | |
30 | 30 | /** |
31 | 31 | * @param ProductVariantInterface|null $variant |
32 | + * @return void |
|
32 | 33 | */ |
33 | 34 | public function setVariant(?ProductVariantInterface $variant): void; |
34 | 35 | |
@@ -39,6 +40,7 @@ discard block |
||
39 | 40 | |
40 | 41 | /** |
41 | 42 | * @param string|null $productName |
43 | + * @return void |
|
42 | 44 | */ |
43 | 45 | public function setProductName(?string $productName): void; |
44 | 46 | |
@@ -49,6 +51,7 @@ discard block |
||
49 | 51 | |
50 | 52 | /** |
51 | 53 | * @param string|null $variantName |
54 | + * @return void |
|
52 | 55 | */ |
53 | 56 | public function setVariantName(?string $variantName): void; |
54 | 57 |
@@ -19,6 +19,7 @@ |
||
19 | 19 | { |
20 | 20 | /** |
21 | 21 | * @param OrderInterface $order |
22 | + * @return void |
|
22 | 23 | */ |
23 | 24 | public function __invoke(OrderInterface $order): void; |
24 | 25 | } |
@@ -24,6 +24,7 @@ discard block |
||
24 | 24 | |
25 | 25 | /** |
26 | 26 | * @param ProductInterface|null $product |
27 | + * @return void |
|
27 | 28 | */ |
28 | 29 | public function setProduct(?ProductInterface $product): void; |
29 | 30 | |
@@ -34,6 +35,7 @@ discard block |
||
34 | 35 | |
35 | 36 | /** |
36 | 37 | * @param TaxonInterface|null $taxon |
38 | + * @return void |
|
37 | 39 | */ |
38 | 40 | public function setTaxon(?TaxonInterface $taxon): void; |
39 | 41 | |
@@ -44,6 +46,7 @@ discard block |
||
44 | 46 | |
45 | 47 | /** |
46 | 48 | * @param int|null $position |
49 | + * @return void |
|
47 | 50 | */ |
48 | 51 | public function setPosition(?int $position): void; |
49 | 52 | } |