@@ -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 | { |
@@ -433,9 +433,9 @@ |
||
433 | 433 | /** |
434 | 434 | * testLoadObjectStateGroupsLoadedExpectedGroups. |
435 | 435 | * |
436 | - * @param array $loadObjectStateGroups |
|
437 | 436 | * |
438 | 437 | * @depends testLoadObjectStateGroups |
438 | + * @param string $class |
|
439 | 439 | */ |
440 | 440 | protected function assertObjectsLoadedByIdentifiers(array $expectedIdentifiers, array $loadedObjects, $class) |
441 | 441 | { |
@@ -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 | */ |
@@ -229,6 +229,9 @@ discard block |
||
229 | 229 | return __DIR__ . '/../../../../../../var'; |
230 | 230 | } |
231 | 231 | |
232 | + /** |
|
233 | + * @param string $sourceDir |
|
234 | + */ |
|
232 | 235 | protected function cleanupVarDir($sourceDir) |
233 | 236 | { |
234 | 237 | if ($this->getServiceContainer()->getInnerContainer()->has('ezpublish.core.io.flysystem.default_filesystem')) { |
@@ -316,7 +319,7 @@ discard block |
||
316 | 319 | /** |
317 | 320 | * Applies the given SQL $statements to the database in use. |
318 | 321 | * |
319 | - * @param array $statements |
|
322 | + * @param string[] $statements |
|
320 | 323 | */ |
321 | 324 | protected function applyStatements(array $statements) |
322 | 325 | { |
@@ -1825,6 +1825,11 @@ |
||
1825 | 1825 | return $userGroup; |
1826 | 1826 | } |
1827 | 1827 | |
1828 | + /** |
|
1829 | + * @param string $login |
|
1830 | + * @param string $password |
|
1831 | + * @param integer $type |
|
1832 | + */ |
|
1828 | 1833 | private function createHash($login, $password, $type) |
1829 | 1834 | { |
1830 | 1835 | switch ($type) { |
@@ -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 |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | * add additional columns to be fetched from the database. Please do not |
52 | 52 | * forget to call the parent when overwriting this method. |
53 | 53 | * |
54 | - * @param eZ\Publish\Core\Persistence\Database\SelectQuery $selectQuery |
|
54 | + * @param SelectQuery $selectQuery |
|
55 | 55 | * @param int $fieldId |
56 | 56 | * @param int $versionNo |
57 | 57 | */ |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | * add additional columns to be set in the database. Please do not forget |
73 | 73 | * to call the parent when overwriting this method. |
74 | 74 | * |
75 | - * @param \ezcQueryInsert $insertQuery |
|
75 | + * @param InsertQuery $insertQuery |
|
76 | 76 | * @param VersionInfo $versionInfo |
77 | 77 | * @param Field $field |
78 | 78 | */ |