@@ -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 |
@@ -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 | */ |
@@ -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 | { |
@@ -86,7 +86,7 @@ |
||
| 86 | 86 | /** |
| 87 | 87 | * @dataProvider indexingProvider |
| 88 | 88 | * |
| 89 | - * @param array|null $value |
|
| 89 | + * @param array|null $values |
|
| 90 | 90 | * @param \Psr\Log\LoggerInterface|\PHPUnit\Framework\MockObject\MockObject|null $logger |
| 91 | 91 | */ |
| 92 | 92 | public function testIndexing(array $values = null, $logger = null) |
@@ -111,7 +111,7 @@ |
||
| 111 | 111 | } |
| 112 | 112 | |
| 113 | 113 | /** |
| 114 | - * @return MockObject|RequestMatcherInterface |
|
| 114 | + * @return RequestMatcherInterface |
|
| 115 | 115 | */ |
| 116 | 116 | protected function getRequestMatcherMock() |
| 117 | 117 | { |