@@ -196,7 +196,7 @@ discard block |
||
| 196 | 196 | * @param string $operator |
| 197 | 197 | * @param string $value |
| 198 | 198 | * |
| 199 | - * @return callback |
|
| 199 | + * @return \Closure |
|
| 200 | 200 | */ |
| 201 | 201 | protected function getTransposeClosure($operator, $value) |
| 202 | 202 | { |
@@ -216,7 +216,7 @@ discard block |
||
| 216 | 216 | * |
| 217 | 217 | * @param string $char |
| 218 | 218 | * |
| 219 | - * @return callback |
|
| 219 | + * @return \Closure |
|
| 220 | 220 | */ |
| 221 | 221 | protected function compileTargetCharacter($char) |
| 222 | 222 | { |
@@ -21,7 +21,6 @@ |
||
| 21 | 21 | * Constructor. |
| 22 | 22 | * |
| 23 | 23 | * @param \eZ\Publish\Core\Persistence\TransformationProcessor\PcreCompiler $compiler |
| 24 | - * @param string $installDir Base dir for rule loading |
|
| 25 | 24 | * @param array $ruleFiles |
| 26 | 25 | */ |
| 27 | 26 | public function __construct(PcreCompiler $compiler, array $ruleFiles = array()) |
@@ -230,7 +230,7 @@ discard block |
||
| 230 | 230 | * |
| 231 | 231 | * @param mixed $id |
| 232 | 232 | * |
| 233 | - * @return \eZ\Publish\API\Repository\Values\User\RoleDraft |
|
| 233 | + * @return \eZ\Publish\SPI\Persistence\User\Policy |
|
| 234 | 234 | */ |
| 235 | 235 | public function loadRoleDraft($id) |
| 236 | 236 | { |
@@ -1396,7 +1396,7 @@ discard block |
||
| 1396 | 1396 | * |
| 1397 | 1397 | * @param \eZ\Publish\API\Repository\Values\User\RoleCreateStruct $roleCreateStruct |
| 1398 | 1398 | * |
| 1399 | - * @return \eZ\Publish\Core\FieldType\ValidationError[][][] |
|
| 1399 | + * @return \eZ\Publish\Core\FieldType\ValidationError[] |
|
| 1400 | 1400 | */ |
| 1401 | 1401 | protected function validateRoleCreateStruct(APIRoleCreateStruct $roleCreateStruct) |
| 1402 | 1402 | { |
@@ -1426,7 +1426,7 @@ discard block |
||
| 1426 | 1426 | * @param string $function |
| 1427 | 1427 | * @param \eZ\Publish\API\Repository\Values\User\Limitation[] $limitations |
| 1428 | 1428 | * |
| 1429 | - * @return \eZ\Publish\Core\FieldType\ValidationError[][] |
|
| 1429 | + * @return \eZ\Publish\Core\FieldType\ValidationError[] |
|
| 1430 | 1430 | */ |
| 1431 | 1431 | protected function validatePolicy($module, $function, array $limitations) |
| 1432 | 1432 | { |
@@ -153,7 +153,7 @@ discard block |
||
| 153 | 153 | } |
| 154 | 154 | |
| 155 | 155 | /** |
| 156 | - * @return \eZ\Publish\API\Repository\Values\Content\Field[] |
|
| 156 | + * @return Field[] |
|
| 157 | 157 | */ |
| 158 | 158 | protected function getFields() |
| 159 | 159 | { |
@@ -204,7 +204,7 @@ discard block |
||
| 204 | 204 | } |
| 205 | 205 | |
| 206 | 206 | /** |
| 207 | - * @return \eZ\Publish\Core\Repository\Values\ContentType\FieldDefinition[] |
|
| 207 | + * @return FieldDefinition[] |
|
| 208 | 208 | */ |
| 209 | 209 | protected function getFieldDefinitions() |
| 210 | 210 | { |
@@ -504,6 +504,11 @@ |
||
| 504 | 504 | ); |
| 505 | 505 | } |
| 506 | 506 | |
| 507 | + /** |
|
| 508 | + * @param integer $id |
|
| 509 | + * @param null|integer $fieldDefinitionId |
|
| 510 | + * @param integer $contentId |
|
| 511 | + */ |
|
| 507 | 512 | protected function getStubbedRelation($id, $type, $fieldDefinitionId, $contentId) |
| 508 | 513 | { |
| 509 | 514 | return new \eZ\Publish\Core\Repository\Values\Content\Relation( |
@@ -110,7 +110,7 @@ |
||
| 110 | 110 | * |
| 111 | 111 | * @param \eZ\Publish\API\Repository\Values\Content\Location $location |
| 112 | 112 | * |
| 113 | - * @return null|\eZ\Publish\API\Repository\Values\Content\TrashItem null if location was deleted, otherwise TrashItem |
|
| 113 | + * @return TrashItem|null null if location was deleted, otherwise TrashItem |
|
| 114 | 114 | */ |
| 115 | 115 | public function trash(Location $location) |
| 116 | 116 | { |
@@ -502,7 +502,7 @@ |
||
| 502 | 502 | * |
| 503 | 503 | * @param mixed $userId |
| 504 | 504 | * |
| 505 | - * @return \eZ\Publish\API\Repository\Values\User\User |
|
| 505 | + * @return \eZ\Publish\API\Repository\Values\ValueObject |
|
| 506 | 506 | * |
| 507 | 507 | * @throws \eZ\Publish\API\Repository\Exceptions\NotFoundException if a user with the given id was not found |
| 508 | 508 | */ |
@@ -154,7 +154,7 @@ discard block |
||
| 154 | 154 | * Returns the fallback default value of field type when no such default |
| 155 | 155 | * value is provided in the field definition in content types. |
| 156 | 156 | * |
| 157 | - * @return mixed |
|
| 157 | + * @return Value |
|
| 158 | 158 | */ |
| 159 | 159 | public function getEmptyValue() |
| 160 | 160 | { |
@@ -184,7 +184,7 @@ discard block |
||
| 184 | 184 | * |
| 185 | 185 | * @param mixed $hash |
| 186 | 186 | * |
| 187 | - * @return mixed |
|
| 187 | + * @return Value |
|
| 188 | 188 | */ |
| 189 | 189 | public function fromHash($hash) |
| 190 | 190 | { |
@@ -29,7 +29,8 @@ |
||
| 29 | 29 | use eZ\Publish\Core\REST\Common\RequestParser; |
| 30 | 30 | use eZ\Publish\Core\REST\Common\Input\Dispatcher; |
| 31 | 31 | use eZ\Publish\Core\REST\Common\Output\Visitor; |
| 32 | -use eZ\Publish\Core\REST\Common\Message; use eZ\Publish\Core\REST\Client\Exceptions\InvalidArgumentValue; |
|
| 32 | +use eZ\Publish\Core\REST\Common\Message; |
|
| 33 | +use eZ\Publish\Core\REST\Client\Exceptions\InvalidArgumentValue; |
|
| 33 | 34 | use eZ\Publish\Core\REST\Common\Exceptions\InvalidArgumentException; |
| 34 | 35 | use eZ\Publish\Core\REST\Common\Exceptions\ForbiddenException; |
| 35 | 36 | use eZ\Publish\Core\REST\Client\Exceptions\BadStateException; |
@@ -513,9 +513,9 @@ discard block |
||
| 513 | 513 | * ATTENTION: This is not an API method and only meant for internal use in |
| 514 | 514 | * the REST Client implementation. |
| 515 | 515 | * |
| 516 | - * @param mixed $fieldDefinitionListReference |
|
| 516 | + * @param string $fieldDefinitionListReference |
|
| 517 | 517 | * |
| 518 | - * @return \eZ\Publish\Core\REST\Client\Values\FieldDefinitionList |
|
| 518 | + * @return \eZ\Publish\API\Repository\Values\ValueObject |
|
| 519 | 519 | */ |
| 520 | 520 | public function loadFieldDefinitionList($fieldDefinitionListReference) |
| 521 | 521 | { |
@@ -536,9 +536,9 @@ discard block |
||
| 536 | 536 | * ATTENTION: This is not an API method and only meant for internal use in |
| 537 | 537 | * the REST Client implementation. |
| 538 | 538 | * |
| 539 | - * @param mixed $contentTypeGroupListReference |
|
| 539 | + * @param string $contentTypeGroupListReference |
|
| 540 | 540 | * |
| 541 | - * @return \eZ\Publish\Core\REST\Client\Values\ContentTypeGroupRefList |
|
| 541 | + * @return \eZ\Publish\API\Repository\Values\ValueObject |
|
| 542 | 542 | */ |
| 543 | 543 | public function loadContentTypeGroupList($contentTypeGroupListReference) |
| 544 | 544 | { |