@@ -132,7 +132,7 @@ |
||
132 | 132 | } |
133 | 133 | |
134 | 134 | /** |
135 | - * @return array |
|
135 | + * @return integer[] |
|
136 | 136 | */ |
137 | 137 | public function getLimits(): array |
138 | 138 | { |
@@ -37,6 +37,7 @@ |
||
37 | 37 | * Configure options for this field type. |
38 | 38 | * |
39 | 39 | * @param OptionsResolver $resolver |
40 | + * @return void |
|
40 | 41 | */ |
41 | 42 | public function configureOptions(OptionsResolver $resolver): void; |
42 | 43 | } |
@@ -25,6 +25,7 @@ |
||
25 | 25 | * @param string $name |
26 | 26 | * @param mixed $data |
27 | 27 | * @param array $options |
28 | + * @return void |
|
28 | 29 | */ |
29 | 30 | public function apply(DataSourceInterface $dataSource, string $name, $data, array $options): void; |
30 | 31 | } |
@@ -26,6 +26,7 @@ |
||
26 | 26 | * @param DataSourceInterface $dataSource |
27 | 27 | * @param Grid $grid |
28 | 28 | * @param Parameters $parameters |
29 | + * @return void |
|
29 | 30 | */ |
30 | 31 | public function apply(DataSourceInterface $dataSource, Grid $grid, Parameters $parameters): void; |
31 | 32 | } |
@@ -26,6 +26,7 @@ |
||
26 | 26 | * @param DataSourceInterface $dataSource |
27 | 27 | * @param Grid $grid |
28 | 28 | * @param Parameters $parameters |
29 | + * @return void |
|
29 | 30 | */ |
30 | 31 | public function sort(DataSourceInterface $dataSource, Grid $grid, Parameters $parameters): void; |
31 | 32 | } |
@@ -24,6 +24,7 @@ |
||
24 | 24 | * @param ProductInterface $product |
25 | 25 | * |
26 | 26 | * @throws \InvalidArgumentException |
27 | + * @return void |
|
27 | 28 | */ |
28 | 29 | public function generate(ProductInterface $product): void; |
29 | 30 | } |
@@ -29,6 +29,7 @@ discard block |
||
29 | 29 | |
30 | 30 | /** |
31 | 31 | * @param ProductAssociationTypeInterface|null $type |
32 | + * @return void |
|
32 | 33 | */ |
33 | 34 | public function setType(?ProductAssociationTypeInterface $type): void; |
34 | 35 | |
@@ -39,6 +40,7 @@ discard block |
||
39 | 40 | |
40 | 41 | /** |
41 | 42 | * @param ProductInterface|null $owner |
43 | + * @return void |
|
42 | 44 | */ |
43 | 45 | public function setOwner(?ProductInterface $owner): void; |
44 | 46 | |
@@ -49,11 +51,13 @@ discard block |
||
49 | 51 | |
50 | 52 | /** |
51 | 53 | * @param ProductInterface $product |
54 | + * @return void |
|
52 | 55 | */ |
53 | 56 | public function addAssociatedProduct(ProductInterface $product): void; |
54 | 57 | |
55 | 58 | /** |
56 | 59 | * @param ProductInterface $product |
60 | + * @return void |
|
57 | 61 | */ |
58 | 62 | public function removeAssociatedProduct(ProductInterface $product): void; |
59 | 63 | |
@@ -64,5 +68,8 @@ discard block |
||
64 | 68 | */ |
65 | 69 | public function hasAssociatedProduct(ProductInterface $product): bool; |
66 | 70 | |
71 | + /** |
|
72 | + * @return void |
|
73 | + */ |
|
67 | 74 | public function clearAssociatedProducts(): void; |
68 | 75 | } |
@@ -29,6 +29,7 @@ |
||
29 | 29 | |
30 | 30 | /** |
31 | 31 | * @param string|null $name |
32 | + * @return void |
|
32 | 33 | */ |
33 | 34 | public function setName(?string $name): void; |
34 | 35 | } |
@@ -27,6 +27,7 @@ |
||
27 | 27 | |
28 | 28 | /** |
29 | 29 | * @param ProductInterface|null $product |
30 | + * @return void |
|
30 | 31 | */ |
31 | 32 | public function setProduct(?ProductInterface $product): void; |
32 | 33 | } |