Completed
Push — 7.5 ( 06fb92...5d0d02 )
by Łukasz
18:43
created
Persistence/Legacy/Tests/Content/Language/CachingLanguageHandlerTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -352,7 +352,7 @@
 block discarded – undo
352 352
     /**
353 353
      * Returns an array with 2 languages.
354 354
      *
355
-     * @return \eZ\Publish\SPI\Persistence\Content\Language[]
355
+     * @return Language[]
356 356
      */
357 357
     protected function getLanguagesFixture()
358 358
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/Persistence/Legacy/Tests/Content/LanguageAwareTestCase.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     /**
36 36
      * Returns a language handler mock.
37 37
      *
38
-     * @return \eZ\Publish\Core\Persistence\Legacy\Content\Language\Handler
38
+     * @return \eZ\Publish\SPI\Persistence\Content\Language\Handler
39 39
      */
40 40
     protected function getLanguageHandler()
41 41
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/Persistence/Legacy/User/Gateway/DoctrineDatabase.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     /**
40 40
      * Create user.
41 41
      *
42
-     * @param user $user
42
+     * @param User $user
43 43
      *
44 44
      * @return mixed
45 45
      */
@@ -338,7 +338,7 @@  discard block
 block discarded – undo
338 338
     /**
339 339
      * Remove role from user or user group, by assignment ID.
340 340
      *
341
-     * @param mixed $roleAssignmentId
341
+     * @param integer $roleAssignmentId
342 342
      */
343 343
     public function removeRoleAssignmentById($roleAssignmentId)
344 344
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/Persistence/Legacy/User/Gateway/ExceptionConversion.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
     /**
42 42
      * Create user.
43 43
      *
44
-     * @param user $user
44
+     * @param User $user
45 45
      *
46 46
      * @return mixed
47 47
      */
Please login to merge, or discard this patch.
eZ/Publish/Core/Persistence/Legacy/User/Handler.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
     /**
287 287
      * Loads a role draft by the original role ID.
288 288
      *
289
-     * @param mixed $roleId ID of the role the draft was created from.
289
+     * @param integer $roleId ID of the role the draft was created from.
290 290
      *
291 291
      * @throws \eZ\Publish\API\Repository\Exceptions\NotFoundException If role is not found
292 292
      *
@@ -461,7 +461,7 @@  discard block
 block discarded – undo
461 461
     /**
462 462
      * Returns the user policies associated with the user (including inherited policies from user groups).
463 463
      *
464
-     * @param mixed $userId
464
+     * @param integer $userId
465 465
      *
466 466
      * @return \eZ\Publish\SPI\Persistence\User\Policy[]
467 467
      */
@@ -572,7 +572,7 @@  discard block
 block discarded – undo
572 572
      *
573 573
      * Role Assignments with same roleId and limitationIdentifier will be merged together into one.
574 574
      *
575
-     * @param mixed $groupId In legacy storage engine this is the content object id roles are assigned to in ezuser_role.
575
+     * @param integer $groupId In legacy storage engine this is the content object id roles are assigned to in ezuser_role.
576 576
      *                      By the nature of legacy this can currently also be used to get by $userId.
577 577
      * @param bool $inherit If true also return inherited role assignments from user groups.
578 578
      *
Please login to merge, or discard this patch.
eZ/Publish/Core/Persistence/Legacy/User/Role/Gateway/DoctrineDatabase.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -433,7 +433,7 @@  discard block
 block discarded – undo
433 433
     /**
434 434
      * Loads role assignment for specified assignment ID.
435 435
      *
436
-     * @param mixed $roleAssignmentId
436
+     * @param integer $roleAssignmentId
437 437
      *
438 438
      * @return array
439 439
      */
@@ -464,7 +464,7 @@  discard block
 block discarded – undo
464 464
     /**
465 465
      * Loads role assignments for specified content ID.
466 466
      *
467
-     * @param mixed $groupId
467
+     * @param integer $groupId
468 468
      * @param bool $inherited
469 469
      *
470 470
      * @return array
@@ -509,7 +509,7 @@  discard block
 block discarded – undo
509 509
     /**
510 510
      * Loads role assignments for given role ID.
511 511
      *
512
-     * @param mixed $roleId
512
+     * @param integer $roleId
513 513
      *
514 514
      * @return array
515 515
      */
Please login to merge, or discard this patch.
eZ/Publish/Core/Repository/Tests/Service/Mock/NameSchemaTest.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/Repository/Values/ContentType/FieldType.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/REST/Client/ContentTypeService.php 2 patches
Unused Use Statements   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,8 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -513,9 +513,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     {
@@ -856,7 +856,7 @@  discard block
 block discarded – undo
856 856
 
857 857
     /**
858 858
      * @param \eZ\Publish\API\Repository\Values\ContentType\ContentTypeDraft $contentTypeDraft
859
-     * @param string $languageCodes
859
+     * @param string $languageCode
860 860
      *
861 861
      * @return \eZ\Publish\API\Repository\Values\ContentType\ContentTypeDraft
862 862
      */
Please login to merge, or discard this patch.