@@ -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) |
@@ -268,6 +268,9 @@ discard block |
||
268 | 268 | $this->assertContainsEzRemoteInvalidLinkError($contentRemoteId, $errors); |
269 | 269 | } |
270 | 270 | |
271 | + /** |
|
272 | + * @param integer $locationId |
|
273 | + */ |
|
271 | 274 | private function assertContainsEzLocationInvalidLinkError($locationId, array $errors) |
272 | 275 | { |
273 | 276 | $format = 'Invalid link "ezlocation://%d": target location cannot be found'; |
@@ -275,6 +278,9 @@ discard block |
||
275 | 278 | $this->assertContains(sprintf($format, $locationId), $errors); |
276 | 279 | } |
277 | 280 | |
281 | + /** |
|
282 | + * @param integer $contentId |
|
283 | + */ |
|
278 | 284 | private function assertContainsEzContentInvalidLinkError($contentId, array $errors) |
279 | 285 | { |
280 | 286 | $format = 'Invalid link "ezcontent://%d": target content cannot be found'; |
@@ -282,6 +288,9 @@ discard block |
||
282 | 288 | $this->assertContains(sprintf($format, $contentId), $errors); |
283 | 289 | } |
284 | 290 | |
291 | + /** |
|
292 | + * @param string $contentId |
|
293 | + */ |
|
285 | 294 | private function assertContainsEzRemoteInvalidLinkError($contentId, array $errors) |
286 | 295 | { |
287 | 296 | $format = 'Invalid link "ezremote://%s": target content cannot be found'; |
@@ -303,6 +312,9 @@ discard block |
||
303 | 312 | ->getMock(); |
304 | 313 | } |
305 | 314 | |
315 | + /** |
|
316 | + * @param string $scheme |
|
317 | + */ |
|
306 | 318 | private function createInputDocument($scheme, $id) |
307 | 319 | { |
308 | 320 | $url = $scheme . '://' . $id; |
@@ -22,7 +22,7 @@ |
||
22 | 22 | * @param string $table |
23 | 23 | * @param string $column |
24 | 24 | * |
25 | - * @return mixed |
|
25 | + * @return string |
|
26 | 26 | */ |
27 | 27 | public function getAutoIncrementValue($table, $column) |
28 | 28 | { |
@@ -15,6 +15,9 @@ discard block |
||
15 | 15 | */ |
16 | 16 | abstract class BaseURLServiceTest extends BaseTest |
17 | 17 | { |
18 | + /** |
|
19 | + * @param integer $exectedTotalCount |
|
20 | + */ |
|
18 | 21 | protected function doTestFindUrls(URLQuery $query, array $expectedUrls, $exectedTotalCount = null, $ignoreOrder = true) |
19 | 22 | { |
20 | 23 | $repository = $this->getRepository(); |
@@ -32,6 +35,9 @@ discard block |
||
32 | 35 | $this->assertSearchResultItems($searchResult, $expectedUrls, $ignoreOrder); |
33 | 36 | } |
34 | 37 | |
38 | + /** |
|
39 | + * @param boolean $ignoreOrder |
|
40 | + */ |
|
35 | 41 | protected function assertSearchResultItems(SearchResult $searchResult, array $expectedUrls, $ignoreOrder) |
36 | 42 | { |
37 | 43 | $this->assertCount(count($expectedUrls), $searchResult->items); |