Completed
Push — ezp-26146_location_swap_incons... ( 60d346...eccc44 )
by
unknown
23:54
created
Core/Persistence/Legacy/Content/UrlAlias/Gateway/DoctrineDatabase.php 1 patch
Doc Comments   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -250,7 +250,7 @@  discard block
 block discarded – undo
250 250
      *
251 251
      * @param string $action
252 252
      * @param mixed $languageId
253
-     * @param mixed $newId
253
+     * @param integer $newId
254 254
      * @param mixed $parentId
255 255
      * @param string $textMD5
256 256
      */
@@ -447,8 +447,8 @@  discard block
 block discarded – undo
447 447
      *
448 448
      * Update includes history entries.
449 449
      *
450
-     * @param mixed $oldParentId
451
-     * @param mixed $newParentId
450
+     * @param integer $oldParentId
451
+     * @param integer $newParentId
452 452
      */
453 453
     public function reparent($oldParentId, $newParentId)
454 454
     {
@@ -594,7 +594,7 @@  discard block
 block discarded – undo
594 594
     /**
595 595
      * Returns next value for "id" column.
596 596
      *
597
-     * @return mixed
597
+     * @return string
598 598
      */
599 599
     public function getNextId()
600 600
     {
@@ -909,7 +909,7 @@  discard block
 block discarded – undo
909 909
     /**
910 910
      * Deletes single custom alias row matched by composite primary key.
911 911
      *
912
-     * @param mixed $parentId
912
+     * @param integer $parentId
913 913
      * @param string $textMD5
914 914
      *
915 915
      * @return bool
@@ -947,10 +947,10 @@  discard block
 block discarded – undo
947 947
      *
948 948
      * If $id is set only autogenerated entries will be removed.
949 949
      *
950
-     * @param mixed $action
951
-     * @param mixed|null $id
950
+     * @param string $action
951
+     * @param integer $id
952 952
      *
953
-     * @return bool
953
+     * @return boolean|null
954 954
      */
955 955
     public function remove($action, $id = null)
956 956
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/Persistence/Legacy/Content/UrlAlias/Handler.php 1 patch
Doc Comments   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -101,8 +101,8 @@  discard block
 block discarded – undo
101 101
      * $alwaysAvailable controls whether the url alias is accessible in all
102 102
      * languages.
103 103
      *
104
-     * @param mixed $locationId
105
-     * @param mixed $parentLocationId
104
+     * @param integer $locationId
105
+     * @param integer $parentLocationId
106 106
      * @param string $name the new name computed by the name schema or url alias schema
107 107
      * @param string $languageCode
108 108
      * @param bool $alwaysAvailable
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
      * If $languageCode is null the $alias is created in the system's default
232 232
      * language. $alwaysAvailable makes the alias available in all languages.
233 233
      *
234
-     * @param mixed $locationId
234
+     * @param integer $locationId
235 235
      * @param string $path
236 236
      * @param bool $forwarding
237 237
      * @param string $languageCode
@@ -393,7 +393,7 @@  discard block
 block discarded – undo
393 393
     /**
394 394
      * List of user generated or autogenerated url entries, pointing to $locationId.
395 395
      *
396
-     * @param mixed $locationId
396
+     * @param integer $locationId
397 397
      * @param bool $custom if true the user generated aliases are listed otherwise the autogenerated
398 398
      *
399 399
      * @return \eZ\Publish\SPI\Persistence\Content\UrlAlias[]
@@ -522,9 +522,9 @@  discard block
 block discarded – undo
522 522
      *
523 523
      * This method triggers the change of the autogenerated aliases.
524 524
      *
525
-     * @param mixed $locationId
526
-     * @param mixed $oldParentId
527
-     * @param mixed $newParentId
525
+     * @param integer $locationId
526
+     * @param integer $oldParentId
527
+     * @param integer $newParentId
528 528
      */
529 529
     public function locationMoved($locationId, $oldParentId, $newParentId)
530 530
     {
@@ -552,9 +552,9 @@  discard block
 block discarded – undo
552 552
      *
553 553
      * This method triggers the creation of the autogenerated aliases for the copied locations
554 554
      *
555
-     * @param mixed $locationId
556
-     * @param mixed $newLocationId
557
-     * @param mixed $newParentId
555
+     * @param integer $locationId
556
+     * @param integer $newLocationId
557
+     * @param integer $newParentId
558 558
      */
559 559
     public function locationCopied($locationId, $newLocationId, $newParentId)
560 560
     {
@@ -657,7 +657,7 @@  discard block
 block discarded – undo
657 657
     /**
658 658
      * Notifies the underlying engine that a location was deleted or moved to trash.
659 659
      *
660
-     * @param mixed $locationId
660
+     * @param integer $locationId
661 661
      */
662 662
     public function locationDeleted($locationId)
663 663
     {
Please login to merge, or discard this patch.