@@ -116,7 +116,7 @@ discard block |
||
| 116 | 116 | * |
| 117 | 117 | * @param \eZ\Publish\Core\FieldType\Author\Value $value |
| 118 | 118 | * |
| 119 | - * @return array |
|
| 119 | + * @return boolean |
|
| 120 | 120 | */ |
| 121 | 121 | protected function getSortInfo(BaseValue $value) |
| 122 | 122 | { |
@@ -205,7 +205,7 @@ discard block |
||
| 205 | 205 | * |
| 206 | 206 | * @param string $name |
| 207 | 207 | * |
| 208 | - * @return \eZ\Publish\SPI\FieldType\ValidationError|null |
|
| 208 | + * @return ValidationError|null |
|
| 209 | 209 | */ |
| 210 | 210 | private function validateSettingName($name) |
| 211 | 211 | { |
@@ -229,7 +229,7 @@ discard block |
||
| 229 | 229 | * @param string $name |
| 230 | 230 | * @param string $value |
| 231 | 231 | * |
| 232 | - * @return \eZ\Publish\SPI\FieldType\ValidationError|null |
|
| 232 | + * @return ValidationError|null |
|
| 233 | 233 | */ |
| 234 | 234 | private function validateDefaultAuthorSetting($name, $value) |
| 235 | 235 | { |
@@ -117,9 +117,9 @@ discard block |
||
| 117 | 117 | * Inserts a new content object. |
| 118 | 118 | * |
| 119 | 119 | * @param \eZ\Publish\SPI\Persistence\Content\CreateStruct $struct |
| 120 | - * @param mixed $currentVersionNo |
|
| 120 | + * @param integer $currentVersionNo |
|
| 121 | 121 | * |
| 122 | - * @return int ID |
|
| 122 | + * @return string ID |
|
| 123 | 123 | */ |
| 124 | 124 | public function insertContentObject(CreateStruct $struct, $currentVersionNo = 1) |
| 125 | 125 | { |
@@ -221,7 +221,7 @@ discard block |
||
| 221 | 221 | * @param \eZ\Publish\SPI\Persistence\Content\VersionInfo $versionInfo |
| 222 | 222 | * @param \eZ\Publish\SPI\Persistence\Content\Field[] $fields |
| 223 | 223 | * |
| 224 | - * @return int ID |
|
| 224 | + * @return string ID |
|
| 225 | 225 | */ |
| 226 | 226 | public function insertVersion(VersionInfo $versionInfo, array $fields) |
| 227 | 227 | { |
@@ -615,7 +615,7 @@ discard block |
||
| 615 | 615 | * @param \eZ\Publish\SPI\Persistence\Content\Field $field |
| 616 | 616 | * @param \eZ\Publish\Core\Persistence\Legacy\Content\StorageFieldValue $value |
| 617 | 617 | * |
| 618 | - * @return int ID |
|
| 618 | + * @return string ID |
|
| 619 | 619 | */ |
| 620 | 620 | public function insertNewField(Content $content, Field $field, StorageFieldValue $value) |
| 621 | 621 | { |
@@ -1094,7 +1094,7 @@ discard block |
||
| 1094 | 1094 | * |
| 1095 | 1095 | * Result is returned with oldest version first (using version id as it has index and is auto increment). |
| 1096 | 1096 | * |
| 1097 | - * @param mixed $contentId |
|
| 1097 | + * @param integer $contentId |
|
| 1098 | 1098 | * @param mixed|null $status Optional argument to filter versions by status, like {@see VersionInfo::STATUS_ARCHIVED}. |
| 1099 | 1099 | * @param int $limit Limit for items returned, -1 means none. |
| 1100 | 1100 | * |
@@ -1162,7 +1162,7 @@ discard block |
||
| 1162 | 1162 | /** |
| 1163 | 1163 | * Returns all version numbers for the given $contentId. |
| 1164 | 1164 | * |
| 1165 | - * @param mixed $contentId |
|
| 1165 | + * @param integer $contentId |
|
| 1166 | 1166 | * |
| 1167 | 1167 | * @return int[] |
| 1168 | 1168 | */ |
@@ -1860,7 +1860,7 @@ discard block |
||
| 1860 | 1860 | * |
| 1861 | 1861 | * @param \eZ\Publish\SPI\Persistence\Content\Relation\CreateStruct $createStruct |
| 1862 | 1862 | * |
| 1863 | - * @return int ID the inserted ID |
|
| 1863 | + * @return string ID the inserted ID |
|
| 1864 | 1864 | */ |
| 1865 | 1865 | public function insertRelation(RelationCreateStruct $createStruct) |
| 1866 | 1866 | { |
@@ -171,7 +171,7 @@ |
||
| 171 | 171 | * @param \eZ\Publish\Core\SignalSlot\LanguageService $languageService |
| 172 | 172 | * @param \eZ\Publish\Core\SignalSlot\URLService $urlService |
| 173 | 173 | * @param \eZ\Publish\Core\SignalSlot\BookmarkService $bookmarkService |
| 174 | - * @param \eZ\Publish\API\Repository\NotificationService $notificationService |
|
| 174 | + * @param \PHPUnit\Framework\MockObject\MockObject $notificationService |
|
| 175 | 175 | * @param \eZ\Publish\Core\SignalSlot\UserPreferenceService $userPreferenceService |
| 176 | 176 | */ |
| 177 | 177 | public function __construct( |