@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | } |
| 118 | 118 | |
| 119 | 119 | /** |
| 120 | - * @return \eZ\Publish\SPI\Persistence\Content\Language\Handler|\PHPUnit_Framework_MockObject_MockObject |
|
| 120 | + * @return \eZ\Publish\SPI\Persistence\Content\Language\Handler |
|
| 121 | 121 | */ |
| 122 | 122 | protected function getLanguageHandlerMock() |
| 123 | 123 | { |
@@ -125,7 +125,7 @@ discard block |
||
| 125 | 125 | } |
| 126 | 126 | |
| 127 | 127 | /** |
| 128 | - * @return \eZ\Publish\SPI\Persistence\Content\Type\Handler|\PHPUnit_Framework_MockObject_MockObject |
|
| 128 | + * @return \eZ\Publish\SPI\Persistence\Content\Type\Handler |
|
| 129 | 129 | */ |
| 130 | 130 | protected function getTypeHandlerMock() |
| 131 | 131 | { |
@@ -30,6 +30,7 @@ |
||
| 30 | 30 | |
| 31 | 31 | /** |
| 32 | 32 | * {@inheritdoc} |
| 33 | + * @param string $languageCode |
|
| 33 | 34 | */ |
| 34 | 35 | public function getDescription($languageCode = null) |
| 35 | 36 | { |
@@ -30,6 +30,7 @@ |
||
| 30 | 30 | |
| 31 | 31 | /** |
| 32 | 32 | * {@inheritdoc} |
| 33 | + * @param string $languageCode |
|
| 33 | 34 | */ |
| 34 | 35 | public function getName($languageCode = null) |
| 35 | 36 | { |
@@ -44,7 +44,7 @@ |
||
| 44 | 44 | * @param string $fieldDefIdentifier |
| 45 | 45 | * @param string $languageCode |
| 46 | 46 | * |
| 47 | - * @return mixed a primitive type or a field type Value object depending on the field type. |
|
| 47 | + * @return \eZ\Publish\SPI\FieldType\Value|null a primitive type or a field type Value object depending on the field type. |
|
| 48 | 48 | */ |
| 49 | 49 | public function getFieldValue($fieldDefIdentifier, $languageCode = null) |
| 50 | 50 | { |
@@ -44,7 +44,7 @@ |
||
| 44 | 44 | * @param string $fieldDefIdentifier |
| 45 | 45 | * @param string $languageCode |
| 46 | 46 | * |
| 47 | - * @return mixed a primitive type or a field type Value object depending on the field type. |
|
| 47 | + * @return \eZ\Publish\SPI\FieldType\Value|null a primitive type or a field type Value object depending on the field type. |
|
| 48 | 48 | */ |
| 49 | 49 | public function getFieldValue($fieldDefIdentifier, $languageCode = null) |
| 50 | 50 | { |
@@ -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); |
@@ -492,7 +492,7 @@ |
||
| 492 | 492 | * @param mixed $userId |
| 493 | 493 | * @param string[] $prioritizedLanguages Used as prioritized language code on translated properties of returned object. |
| 494 | 494 | * |
| 495 | - * @return \eZ\Publish\API\Repository\Values\User\User |
|
| 495 | + * @return \eZ\Publish\API\Repository\Values\ValueObject |
|
| 496 | 496 | * |
| 497 | 497 | * @throws \eZ\Publish\API\Repository\Exceptions\NotFoundException if a user with the given id was not found |
| 498 | 498 | */ |
@@ -57,7 +57,7 @@ |
||
| 57 | 57 | /** |
| 58 | 58 | * Generates a language mask from pre-loaded Language Ids. |
| 59 | 59 | * |
| 60 | - * @param array $languageIds |
|
| 60 | + * @param integer[] $languageIds |
|
| 61 | 61 | * @param bool $alwaysAvailable |
| 62 | 62 | * |
| 63 | 63 | * @return int |
@@ -525,6 +525,11 @@ |
||
| 525 | 525 | $relationProcessor->processFieldRelations([], 24, 2, $contentTypeMock, $existingRelations); |
| 526 | 526 | } |
| 527 | 527 | |
| 528 | + /** |
|
| 529 | + * @param integer $id |
|
| 530 | + * @param null|integer $fieldDefinitionId |
|
| 531 | + * @param integer $contentId |
|
| 532 | + */ |
|
| 528 | 533 | protected function getStubbedRelation($id, $type, $fieldDefinitionId, $contentId) |
| 529 | 534 | { |
| 530 | 535 | return new \eZ\Publish\Core\Repository\Values\Content\Relation( |