@@ -369,6 +369,7 @@ discard block |
||
369 | 369 | /** |
370 | 370 | * @covers \eZ\Publish\Core\FieldType\FieldType::isEmptyValue |
371 | 371 | * @dataProvider providerForTestIsEmptyValue |
372 | + * @param \eZ\Publish\SPI\FieldType\Value|null $value |
|
372 | 373 | */ |
373 | 374 | public function testIsEmptyValue($value) |
374 | 375 | { |
@@ -380,6 +381,7 @@ discard block |
||
380 | 381 | /** |
381 | 382 | * @covers \eZ\Publish\Core\FieldType\FieldType::isEmptyValue |
382 | 383 | * @dataProvider providerForTestIsNotEmptyValue |
384 | + * @param \eZ\Publish\SPI\FieldType\Value|null $value |
|
383 | 385 | */ |
384 | 386 | public function testIsNotEmptyValue($value) |
385 | 387 | { |
@@ -509,6 +511,7 @@ discard block |
||
509 | 511 | * Creates content with $fieldData. |
510 | 512 | * |
511 | 513 | * @param mixed $fieldData |
514 | + * @param Repository\Values\ContentType\ContentType $contentType |
|
512 | 515 | * |
513 | 516 | * @return \eZ\Publish\API\Repository\Values\Content\Content |
514 | 517 | */ |
@@ -109,6 +109,9 @@ |
||
109 | 109 | $conn->exec('DELETE FROM ezcontentobject_link WHERE relation_type = 0'); |
110 | 110 | } |
111 | 111 | |
112 | + /** |
|
113 | + * @param integer $totalCount |
|
114 | + */ |
|
112 | 115 | protected function executeList(OutputInterface $output, $totalCount) |
113 | 116 | { |
114 | 117 | $table = new Table($output); |
@@ -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 |
@@ -13,10 +13,9 @@ |
||
13 | 13 | use eZ\Publish\API\Repository\Values\Content\VersionInfo as APIVersionInfo; |
14 | 14 | use eZ\Publish\Core\Repository\Tests\Service\Mock\Base as BaseServiceMockTest; |
15 | 15 | use eZ\Publish\Core\Repository\Helper\DomainMapper; |
16 | -use eZ\Publish\SPI\Persistence\Content\ContentInfo; |
|
16 | +use eZ\Publish\SPI\Persistence\Content\ContentInfo as SPIContentInfo; |
|
17 | 17 | use eZ\Publish\SPI\Persistence\Content\Location; |
18 | 18 | use eZ\Publish\SPI\Persistence\Content\VersionInfo as SPIVersionInfo; |
19 | -use eZ\Publish\SPI\Persistence\Content\ContentInfo as SPIContentInfo; |
|
20 | 19 | |
21 | 20 | /** |
22 | 21 | * Mock test case for internal DomainMapper. |
@@ -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); |
@@ -212,7 +212,6 @@ discard block |
||
212 | 212 | * |
213 | 213 | * @param \eZ\Publish\API\Repository\Values\ValueObject $expectedValues |
214 | 214 | * @param \eZ\Publish\API\Repository\Values\ValueObject $actualObject |
215 | - * @param array $propertyNames |
|
216 | 215 | */ |
217 | 216 | protected function assertStructPropertiesCorrect(ValueObject $expectedValues, ValueObject $actualObject, array $additionalProperties = array()) |
218 | 217 | { |
@@ -474,7 +473,7 @@ discard block |
||
474 | 473 | /** |
475 | 474 | * Create role of a given name with the given policies described by an array. |
476 | 475 | * |
477 | - * @param $roleName |
|
476 | + * @param string $roleName |
|
478 | 477 | * @param array $policiesData [['module' => 'content', 'function' => 'read', 'limitations' => []] |
479 | 478 | * |
480 | 479 | * @return \eZ\Publish\API\Repository\Values\User\Role |
@@ -132,7 +132,6 @@ |
||
132 | 132 | } |
133 | 133 | |
134 | 134 | /** |
135 | - * @param bool $csrfEnabled |
|
136 | 135 | * |
137 | 136 | * @return CsrfListener |
138 | 137 | */ |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | use eZ\Publish\API\Repository\ContentTypeService as APIContentTypeService; |
15 | 15 | use eZ\Publish\API\Repository\LocationService as APILocationService; |
16 | 16 | use eZ\Publish\API\Repository\Exceptions\NotFoundException as APINotFoundException; |
17 | -use eZ\Publish\API\Repository\Values\Content\ContentInfo as APIContentInfo; |
|
17 | +use eZ\Publish\API\Repository\Values\Content\ContentInfo; |
|
18 | 18 | use eZ\Publish\API\Repository\Values\ContentType\ContentType as APIContentType; |
19 | 19 | use eZ\Publish\API\Repository\Values\Content\Location as APILocation; |
20 | 20 | use eZ\Publish\API\Repository\Values\ContentType\FieldDefinition as APIFieldDefinition; |
@@ -33,7 +33,6 @@ discard block |
||
33 | 33 | use eZ\Publish\Core\Repository\Helper\NameSchemaService; |
34 | 34 | use eZ\Publish\API\Repository\Values\Content\Field; |
35 | 35 | use eZ\Publish\Core\FieldType\Value; |
36 | -use eZ\Publish\API\Repository\Values\Content\ContentInfo; |
|
37 | 36 | use eZ\Publish\API\Repository\Values\Content\VersionInfo as APIVersionInfo; |
38 | 37 | use eZ\Publish\Core\Repository\Values\ContentType\ContentType; |
39 | 38 | use eZ\Publish\Core\Repository\Values\ContentType\FieldDefinition; |
@@ -66,7 +66,7 @@ |
||
66 | 66 | /** |
67 | 67 | * Sets the complete list of view providers. |
68 | 68 | * |
69 | - * @param array $viewProviders |
|
69 | + * @param \PHPUnit\Framework\MockObject\MockObject $viewProviders |
|
70 | 70 | */ |
71 | 71 | public function setViewProviders(array $viewProviders) |
72 | 72 | { |