@@ -249,7 +249,7 @@ |
||
249 | 249 | /** |
250 | 250 | * Get the object state service mock object. |
251 | 251 | * |
252 | - * @return \eZ\Publish\API\Repository\ObjectStateService |
|
252 | + * @return \PHPUnit_Framework_MockObject_MockObject |
|
253 | 253 | */ |
254 | 254 | protected function getObjectStateServiceMock() |
255 | 255 | { |
@@ -249,7 +249,7 @@ |
||
249 | 249 | /** |
250 | 250 | * Get the object state service mock object. |
251 | 251 | * |
252 | - * @return \eZ\Publish\API\Repository\ObjectStateService |
|
252 | + * @return \PHPUnit_Framework_MockObject_MockObject |
|
253 | 253 | */ |
254 | 254 | protected function getObjectStateServiceMock() |
255 | 255 | { |
@@ -247,7 +247,7 @@ |
||
247 | 247 | /** |
248 | 248 | * Get the role service mock object. |
249 | 249 | * |
250 | - * @return \eZ\Publish\API\Repository\RoleService |
|
250 | + * @return \PHPUnit_Framework_MockObject_MockObject |
|
251 | 251 | */ |
252 | 252 | protected function getRoleServiceMock() |
253 | 253 | { |
@@ -247,7 +247,7 @@ |
||
247 | 247 | /** |
248 | 248 | * Get the role service mock object. |
249 | 249 | * |
250 | - * @return \eZ\Publish\API\Repository\RoleService |
|
250 | + * @return \PHPUnit_Framework_MockObject_MockObject |
|
251 | 251 | */ |
252 | 252 | protected function getRoleServiceMock() |
253 | 253 | { |
@@ -450,7 +450,7 @@ discard block |
||
450 | 450 | /** |
451 | 451 | * Get the field type parser mock object. |
452 | 452 | * |
453 | - * @return \eZ\Publish\Core\REST\Common\Input\FieldTypeParser; |
|
453 | + * @return FieldTypeParser |
|
454 | 454 | */ |
455 | 455 | private function getFieldTypeParserMock() |
456 | 456 | { |
@@ -477,7 +477,7 @@ discard block |
||
477 | 477 | /** |
478 | 478 | * Get the user service mock object. |
479 | 479 | * |
480 | - * @return \eZ\Publish\API\Repository\UserService |
|
480 | + * @return \PHPUnit_Framework_MockObject_MockObject |
|
481 | 481 | */ |
482 | 482 | protected function getUserServiceMock() |
483 | 483 | { |
@@ -510,7 +510,7 @@ discard block |
||
510 | 510 | /** |
511 | 511 | * Get the content type service mock object. |
512 | 512 | * |
513 | - * @return \eZ\Publish\API\Repository\ContentTypeService |
|
513 | + * @return \PHPUnit_Framework_MockObject_MockObject |
|
514 | 514 | */ |
515 | 515 | protected function getContentTypeServiceMock() |
516 | 516 | { |
@@ -161,6 +161,9 @@ discard block |
||
161 | 161 | } |
162 | 162 | } |
163 | 163 | |
164 | + /** |
|
165 | + * @param boolean $commit |
|
166 | + */ |
|
164 | 167 | protected function indexIncrementally(InputInterface $input, OutputInterface $output, $iterationCount, $commit) |
165 | 168 | { |
166 | 169 | if ($contentIds = $input->getOption('content-ids')) { |
@@ -223,6 +226,10 @@ discard block |
||
223 | 226 | $progress->finish(); |
224 | 227 | } |
225 | 228 | |
229 | + /** |
|
230 | + * @param integer $processCount |
|
231 | + * @param integer $iterationCount |
|
232 | + */ |
|
226 | 233 | private function runParallelProcess(ProgressBar $progress, Statement $stmt, $processCount, $iterationCount, $commit) |
227 | 234 | { |
228 | 235 | /** |
@@ -277,7 +284,7 @@ discard block |
||
277 | 284 | } |
278 | 285 | |
279 | 286 | /** |
280 | - * @param mixed $locationId |
|
287 | + * @param integer $locationId |
|
281 | 288 | * @param bool $count |
282 | 289 | * |
283 | 290 | * @return \Doctrine\DBAL\Driver\Statement |
@@ -1397,7 +1397,7 @@ discard block |
||
1397 | 1397 | } |
1398 | 1398 | |
1399 | 1399 | /** |
1400 | - * @param array $methods |
|
1400 | + * @param string[] $methods |
|
1401 | 1401 | * |
1402 | 1402 | * @return \eZ\Publish\Core\MVC\Symfony\FieldType\RichText\Renderer|\PHPUnit_Framework_MockObject_MockObject |
1403 | 1403 | */ |
@@ -1484,6 +1484,9 @@ discard block |
||
1484 | 1484 | return $this->createMock(LoggerInterface::class); |
1485 | 1485 | } |
1486 | 1486 | |
1487 | + /** |
|
1488 | + * @param integer $mainLocationId |
|
1489 | + */ |
|
1487 | 1490 | protected function getContentMock($mainLocationId) |
1488 | 1491 | { |
1489 | 1492 | $contentInfoMock = $this->createMock(ContentInfo::class); |
@@ -90,7 +90,7 @@ |
||
90 | 90 | /** |
91 | 91 | * @dataProvider indexingProvider |
92 | 92 | * |
93 | - * @param array|null $value |
|
93 | + * @param array|null $values |
|
94 | 94 | * @param \Psr\Log\LoggerInterface|\PHPUnit_Framework_MockObject_MockObject|null $logger |
95 | 95 | */ |
96 | 96 | public function testIndexing(array $values = null, $logger = null) |
@@ -62,7 +62,7 @@ |
||
62 | 62 | * @dataProvider processPurgeClientProvider |
63 | 63 | * |
64 | 64 | * @param string $paramValue |
65 | - * @param string $expectedServiceAlias |
|
65 | + * @param string $expectedServiceId |
|
66 | 66 | * @param \Symfony\Component\DependencyInjection\Definition|null $customService |
67 | 67 | */ |
68 | 68 | public function testProcessPurgeClient($paramValue, $expectedServiceId, Definition $customService = null) |