@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | /** |
106 | 106 | * Get initial field data for valid object creation. |
107 | 107 | * |
108 | - * @return mixed |
|
108 | + * @return TextBlockValue |
|
109 | 109 | */ |
110 | 110 | public function getValidCreationFieldData() |
111 | 111 | { |
@@ -170,7 +170,7 @@ discard block |
||
170 | 170 | /** |
171 | 171 | * Get update field externals data. |
172 | 172 | * |
173 | - * @return array |
|
173 | + * @return TextBlockValue |
|
174 | 174 | */ |
175 | 175 | public function getValidUpdateFieldData() |
176 | 176 | { |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | /** |
117 | 117 | * Get initial field data for valid object creation. |
118 | 118 | * |
119 | - * @return mixed |
|
119 | + * @return TextLineValue |
|
120 | 120 | */ |
121 | 121 | public function getValidCreationFieldData() |
122 | 122 | { |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | /** |
190 | 190 | * Get update field externals data. |
191 | 191 | * |
192 | - * @return array |
|
192 | + * @return TextLineValue |
|
193 | 193 | */ |
194 | 194 | public function getValidUpdateFieldData() |
195 | 195 | { |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | /** |
99 | 99 | * Get initial field data for valid object creation. |
100 | 100 | * |
101 | - * @return mixed |
|
101 | + * @return UrlValue |
|
102 | 102 | */ |
103 | 103 | public function getValidCreationFieldData() |
104 | 104 | { |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | /** |
169 | 169 | * Get update field externals data. |
170 | 170 | * |
171 | - * @return array |
|
171 | + * @return UrlValue |
|
172 | 172 | */ |
173 | 173 | public function getValidUpdateFieldData() |
174 | 174 | { |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | /** |
106 | 106 | * Get initial field externals data. |
107 | 107 | * |
108 | - * @return array |
|
108 | + * @return UserValue |
|
109 | 109 | */ |
110 | 110 | public function getValidCreationFieldData() |
111 | 111 | { |
@@ -178,7 +178,7 @@ discard block |
||
178 | 178 | /** |
179 | 179 | * Get update field externals data. |
180 | 180 | * |
181 | - * @return array |
|
181 | + * @return UserValue |
|
182 | 182 | */ |
183 | 183 | public function getValidUpdateFieldData() |
184 | 184 | { |
@@ -3826,6 +3826,7 @@ discard block |
||
3826 | 3826 | * Test for the findContent() method. |
3827 | 3827 | * |
3828 | 3828 | * @see \eZ\Publish\API\Repository\SearchService::findContent() |
3829 | + * @param string $queryType |
|
3829 | 3830 | */ |
3830 | 3831 | public function testUserMetadataGroupHorizontalFilterContent($queryType = null) |
3831 | 3832 | { |
@@ -3915,6 +3916,7 @@ discard block |
||
3915 | 3916 | * Test for the findLocations() method. |
3916 | 3917 | * |
3917 | 3918 | * @see \eZ\Publish\API\Repository\SearchService::findLocations() |
3919 | + * @param string $queryType |
|
3918 | 3920 | */ |
3919 | 3921 | public function testUserMetadataGroupHorizontalFilterLocation($queryType = null) |
3920 | 3922 | { |
@@ -4354,7 +4356,7 @@ discard block |
||
4354 | 4356 | * |
4355 | 4357 | * @param null|callable $closure |
4356 | 4358 | * |
4357 | - * @return callable |
|
4359 | + * @return \Closure |
|
4358 | 4360 | */ |
4359 | 4361 | private function getContentInfoFixtureClosure($closure = null) |
4360 | 4362 | { |
@@ -132,7 +132,7 @@ |
||
132 | 132 | } |
133 | 133 | |
134 | 134 | /** |
135 | - * @param array $parentLocationIds |
|
135 | + * @param integer[] $parentLocationIds |
|
136 | 136 | * |
137 | 137 | * @return array |
138 | 138 | */ |
@@ -22,7 +22,7 @@ |
||
22 | 22 | * |
23 | 23 | * Will match of the given criterion doesn't match |
24 | 24 | * |
25 | - * @param Criterion[] $criteria One criterion, as an array |
|
25 | + * @param Criterion[] $criterion One criterion, as an array |
|
26 | 26 | * |
27 | 27 | * @throws \InvalidArgumentException if more than one criterion is given in the array parameter |
28 | 28 | */ |
@@ -67,7 +67,7 @@ |
||
67 | 67 | protected $bypassCache; |
68 | 68 | |
69 | 69 | /** |
70 | - * @param string|ContainerInterface $container Path to the container file or container instance |
|
70 | + * @param ContainerBuilder $container Path to the container file or container instance |
|
71 | 71 | * @param string $installDir Installation directory, required by default 'containerBuilder.php' file |
72 | 72 | * @param string $cacheDir Directory where PHP container cache will be stored |
73 | 73 | * @param bool $debug Default false should be used for production, if true resources will be checked |
@@ -24,7 +24,7 @@ |
||
24 | 24 | * @param \eZ\Publish\SPI\Persistence\Content\Field $field |
25 | 25 | * @param \eZ\Publish\SPI\Persistence\Content\Type\FieldDefinition $fieldDefinition |
26 | 26 | * |
27 | - * @return \eZ\Publish\SPI\Search\Field[] |
|
27 | + * @return Search\Field[] |
|
28 | 28 | */ |
29 | 29 | public function getIndexData(Field $field, FieldDefinition $fieldDefinition) |
30 | 30 | { |