Completed
Push — ezp25366-copy_content_relation... ( 29e80b...e4da9c )
by
unknown
45:03 queued 22:31
created
eZ/Publish/Core/Persistence/Legacy/Tests/Content/TreeHandlerTest.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -365,7 +365,7 @@  discard block
 block discarded – undo
365 365
     /**
366 366
      * Returns Location Gateway mock.
367 367
      *
368
-     * @return \PHPUnit_Framework_MockObject_MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\Location\Gateway
368
+     * @return \PHPUnit_Framework_MockObject_MockObject
369 369
      */
370 370
     protected function getLocationGatewayMock()
371 371
     {
@@ -386,7 +386,7 @@  discard block
 block discarded – undo
386 386
     /**
387 387
      * Returns a Location Mapper mock.
388 388
      *
389
-     * @return \PHPUnit_Framework_MockObject_MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\Location\Mapper
389
+     * @return \eZ\Publish\Core\Persistence\Legacy\Content\Location\Mapper
390 390
      */
391 391
     protected function getLocationMapperMock()
392 392
     {
@@ -411,7 +411,7 @@  discard block
 block discarded – undo
411 411
     /**
412 412
      * Returns Content Gateway mock.
413 413
      *
414
-     * @return \PHPUnit_Framework_MockObject_MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\Gateway
414
+     * @return \PHPUnit_Framework_MockObject_MockObject
415 415
      */
416 416
     protected function getContentGatewayMock()
417 417
     {
@@ -432,7 +432,7 @@  discard block
 block discarded – undo
432 432
     /**
433 433
      * Returns a Content Mapper mock.
434 434
      *
435
-     * @return \PHPUnit_Framework_MockObject_MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\Mapper
435
+     * @return \eZ\Publish\Core\Persistence\Legacy\Content\Mapper
436 436
      */
437 437
     protected function getContentMapperMock()
438 438
     {
@@ -457,7 +457,7 @@  discard block
 block discarded – undo
457 457
     /**
458 458
      * Returns a FieldHandler mock.
459 459
      *
460
-     * @return \PHPUnit_Framework_MockObject_MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\FieldHandler
460
+     * @return \eZ\Publish\Core\Persistence\Legacy\Content\FieldHandler
461 461
      */
462 462
     protected function getFieldHandlerMock()
463 463
     {
@@ -475,7 +475,7 @@  discard block
 block discarded – undo
475 475
     }
476 476
 
477 477
     /**
478
-     * @param array $methods
478
+     * @param string[] $methods
479 479
      *
480 480
      * @return \PHPUnit_Framework_MockObject_MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\TreeHandler
481 481
      */
Please login to merge, or discard this patch.
Core/Persistence/Legacy/Tests/Content/Type/ContentTypeHandlerTest.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1141,7 +1141,7 @@  discard block
 block discarded – undo
1141 1141
     /**
1142 1142
      * Returns a handler to test with $methods mocked.
1143 1143
      *
1144
-     * @param array $methods
1144
+     * @param string[] $methods
1145 1145
      *
1146 1146
      * @return \eZ\Publish\Core\Persistence\Legacy\Content\Type\Handler
1147 1147
      */
@@ -1177,7 +1177,7 @@  discard block
 block discarded – undo
1177 1177
     /**
1178 1178
      * Returns a mapper mock.
1179 1179
      *
1180
-     * @param array $methods
1180
+     * @param string[] $methods
1181 1181
      *
1182 1182
      * @return \eZ\Publish\Core\Persistence\Legacy\Content\Type\Mapper
1183 1183
      */
Please login to merge, or discard this patch.
Legacy/Tests/Content/Type/ContentUpdater/Action/AddFieldTest.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -510,7 +510,7 @@  discard block
 block discarded – undo
510 510
      * Returns a Content fixture.
511 511
      *
512 512
      * @param int $versionNo
513
-     * @param array $languageCodes
513
+     * @param string[] $languageCodes
514 514
      *
515 515
      * @return \eZ\Publish\SPI\Persistence\Content
516 516
      */
@@ -570,7 +570,7 @@  discard block
 block discarded – undo
570 570
     /**
571 571
      * Returns a Content StorageHandler mock.
572 572
      *
573
-     * @return \PHPUnit_Framework_MockObject_MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\StorageHandler
573
+     * @return \eZ\Publish\Core\Persistence\Legacy\Content\StorageHandler
574 574
      */
575 575
     protected function getContentStorageHandlerMock()
576 576
     {
@@ -590,7 +590,7 @@  discard block
 block discarded – undo
590 590
     /**
591 591
      * Returns a Content mapper mock.
592 592
      *
593
-     * @return \PHPUnit_Framework_MockObject_MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\Mapper
593
+     * @return \eZ\Publish\Core\Persistence\Legacy\Content\Mapper
594 594
      */
595 595
     protected function getContentMapperMock()
596 596
     {
Please login to merge, or discard this patch.
Legacy/Tests/Content/Type/ContentUpdater/Action/RemoveFieldTest.php 1 patch
Doc Comments   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -268,6 +268,8 @@  discard block
 block discarded – undo
268 268
     /**
269 269
      * Returns a Content fixture.
270 270
      *
271
+     * @param integer $versionNo
272
+     * @param string[] $languageCodes
271 273
      * @return \eZ\Publish\SPI\Persistence\Content
272 274
      */
273 275
     protected function getContentFixture($versionNo, $languageCodes)
@@ -321,7 +323,7 @@  discard block
 block discarded – undo
321 323
     /**
322 324
      * Returns a Content StorageHandler mock.
323 325
      *
324
-     * @return \PHPUnit_Framework_MockObject_MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\StorageHandler
326
+     * @return \eZ\Publish\Core\Persistence\Legacy\Content\StorageHandler
325 327
      */
326 328
     protected function getContentStorageHandlerMock()
327 329
     {
@@ -341,7 +343,7 @@  discard block
 block discarded – undo
341 343
     /**
342 344
      * Returns a Content mapper mock.
343 345
      *
344
-     * @return \PHPUnit_Framework_MockObject_MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\Mapper
346
+     * @return \eZ\Publish\Core\Persistence\Legacy\Content\Mapper
345 347
      */
346 348
     protected function getContentMapperMock()
347 349
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/Persistence/Legacy/Tests/TransactionHandlerTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -189,7 +189,7 @@
 block discarded – undo
189 189
     /**
190 190
      * Returns a mock object for the Content Gateway.
191 191
      *
192
-     * @return \eZ\Publish\Core\Persistence\Database\DatabaseHandler|\PHPUnit_Framework_MockObject_MockObject
192
+     * @return \PHPUnit_Framework_MockObject_MockObject
193 193
      */
194 194
     protected function getDatabaseHandlerMock()
195 195
     {
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.