Completed
Push — qa-cumulative-ezp-31278-31279-... ( f57b9c...05fe70 )
by
unknown
14:35
created
eZ/Publish/Core/Persistence/Legacy/Content/Gateway/DoctrineDatabase.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
      * Inserts a new content object.
121 121
      *
122 122
      * @param \eZ\Publish\SPI\Persistence\Content\CreateStruct $struct
123
-     * @param mixed $currentVersionNo
123
+     * @param integer $currentVersionNo
124 124
      *
125 125
      * @return int ID
126 126
      */
@@ -1237,7 +1237,7 @@  discard block
 block discarded – undo
1237 1237
      *
1238 1238
      * Result is returned with oldest version first (using version id as it has index and is auto increment).
1239 1239
      *
1240
-     * @param mixed $contentId
1240
+     * @param integer $contentId
1241 1241
      * @param mixed|null $status Optional argument to filter versions by status, like {@see VersionInfo::STATUS_ARCHIVED}.
1242 1242
      * @param int $limit Limit for items returned, -1 means none.
1243 1243
      *
@@ -1305,7 +1305,7 @@  discard block
 block discarded – undo
1305 1305
     /**
1306 1306
      * Returns all version numbers for the given $contentId.
1307 1307
      *
1308
-     * @param mixed $contentId
1308
+     * @param integer $contentId
1309 1309
      *
1310 1310
      * @return int[]
1311 1311
      */
Please login to merge, or discard this patch.
Bundle/EzPublishCoreBundle/DependencyInjection/Configuration/Parser/IO.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -100,6 +100,7 @@
 block discarded – undo
100 100
 
101 101
     /**
102 102
      * Applies dependencies of complex $parameter in $scope.
103
+     * @param string $parameter
103 104
      */
104 105
     private function addComplexParametersDependencies($parameter, $scope, ContainerBuilder $container)
105 106
     {
Please login to merge, or discard this patch.
eZ/Bundle/EzPublishIOBundle/EventListener/StreamFileListener.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -77,6 +77,7 @@
 block discarded – undo
77 77
      * Tests if $uri is an IO file uri root.
78 78
      *
79 79
      * @param string $uri
80
+     * @param string $urlPrefix
80 81
      *
81 82
      * @return bool
82 83
      */
Please login to merge, or discard this patch.
Core/Persistence/Legacy/Content/UrlAlias/Gateway/DoctrineDatabase.php 1 patch
Doc Comments   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
     /**
105 105
      * Loads list of aliases by given $locationId.
106 106
      *
107
-     * @param mixed $locationId
107
+     * @param integer $locationId
108 108
      * @param bool $custom
109 109
      * @param mixed $languageId
110 110
      *
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
      *
275 275
      * @param string $action
276 276
      * @param mixed $languageId
277
-     * @param mixed $newId
277
+     * @param integer $newId
278 278
      * @param mixed $parentId
279 279
      * @param string $textMD5
280 280
      */
@@ -448,9 +448,9 @@  discard block
 block discarded – undo
448 448
      *
449 449
      * Removes given $languageId from entry's language mask
450 450
      *
451
-     * @param mixed $parentId
451
+     * @param integer $parentId
452 452
      * @param string $textMD5
453
-     * @param mixed $languageId
453
+     * @param integer $languageId
454 454
      */
455 455
     protected function removeTranslation($parentId, $textMD5, $languageId)
456 456
     {
@@ -533,8 +533,8 @@  discard block
 block discarded – undo
533 533
      *
534 534
      * Update includes history entries.
535 535
      *
536
-     * @param mixed $oldParentId
537
-     * @param mixed $newParentId
536
+     * @param integer $oldParentId
537
+     * @param integer $newParentId
538 538
      */
539 539
     public function reparent($oldParentId, $newParentId)
540 540
     {
@@ -680,7 +680,7 @@  discard block
 block discarded – undo
680 680
     /**
681 681
      * Returns next value for "id" column.
682 682
      *
683
-     * @return mixed
683
+     * @return integer
684 684
      */
685 685
     public function getNextId()
686 686
     {
@@ -823,7 +823,7 @@  discard block
 block discarded – undo
823 823
      * Loads autogenerated entry id by given $action and optionally $parentId.
824 824
      *
825 825
      * @param string $action
826
-     * @param mixed|null $parentId
826
+     * @param integer $parentId
827 827
      *
828 828
      * @return array
829 829
      */
@@ -1007,7 +1007,7 @@  discard block
 block discarded – undo
1007 1007
     /**
1008 1008
      * Deletes single custom alias row matched by composite primary key.
1009 1009
      *
1010
-     * @param mixed $parentId
1010
+     * @param integer $parentId
1011 1011
      * @param string $textMD5
1012 1012
      *
1013 1013
      * @return bool
@@ -1045,10 +1045,10 @@  discard block
 block discarded – undo
1045 1045
      *
1046 1046
      * If $id is set only autogenerated entries will be removed.
1047 1047
      *
1048
-     * @param mixed $action
1049
-     * @param mixed|null $id
1048
+     * @param string $action
1049
+     * @param integer $id
1050 1050
      *
1051
-     * @return bool
1051
+     * @return boolean|null
1052 1052
      */
1053 1053
     public function remove($action, $id = null)
1054 1054
     {
Please login to merge, or discard this patch.
Core/Persistence/Legacy/Content/UrlWildcard/Gateway/DoctrineDatabase.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      *
48 48
      * @param \eZ\Publish\SPI\Persistence\Content\UrlWildcard $urlWildcard
49 49
      *
50
-     * @return mixed
50
+     * @return integer
51 51
      */
52 52
     public function insertUrlWildcard(UrlWildcard $urlWildcard)
53 53
     {
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     /**
92 92
      * Deletes the UrlWildcard with given $id.
93 93
      *
94
-     * @param mixed $id
94
+     * @param integer $id
95 95
      */
96 96
     public function deleteUrlWildcard($id)
97 97
     {
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
     /**
112 112
      * Loads an array with data about UrlWildcard with $id.
113 113
      *
114
-     * @param mixed $id
114
+     * @param integer $id
115 115
      *
116 116
      * @return array
117 117
      */
@@ -138,8 +138,8 @@  discard block
 block discarded – undo
138 138
     /**
139 139
      * Loads an array with data about UrlWildcards (paged).
140 140
      *
141
-     * @param mixed $offset
142
-     * @param mixed $limit
141
+     * @param integer $offset
142
+     * @param integer $limit
143 143
      *
144 144
      * @return array
145 145
      */
Please login to merge, or discard this patch.
Publish/Core/Persistence/Legacy/Content/Type/Gateway/DoctrineDatabase.php 1 patch
Doc Comments   +15 added lines, -16 removed lines patch added patch discarded remove patch
@@ -330,7 +330,7 @@  discard block
 block discarded – undo
330 330
      * @param \eZ\Publish\SPI\Persistence\Content\Type $type
331 331
      * @param mixed|null $typeId
332 332
      *
333
-     * @return mixed Type ID
333
+     * @return integer Type ID
334 334
      */
335 335
     public function insertType(Type $type, $typeId = null)
336 336
     {
@@ -425,8 +425,8 @@  discard block
 block discarded – undo
425 425
     /**
426 426
      * Insert assignment of $typeId to $groupId.
427 427
      *
428
-     * @param mixed $groupId
429
-     * @param mixed $typeId
428
+     * @param integer $groupId
429
+     * @param integer $typeId
430 430
      * @param int $status
431 431
      */
432 432
     public function insertGroupAssignment($groupId, $typeId, $status)
@@ -457,8 +457,8 @@  discard block
 block discarded – undo
457 457
     /**
458 458
      * Deletes a group assignments for a Type.
459 459
      *
460
-     * @param mixed $groupId
461
-     * @param mixed $typeId
460
+     * @param integer $groupId
461
+     * @param integer $typeId
462 462
      * @param int $status
463 463
      */
464 464
     public function deleteGroupAssignment($groupId, $typeId, $status)
@@ -507,7 +507,7 @@  discard block
 block discarded – undo
507 507
     /**
508 508
      * Loads data about Group with $identifier.
509 509
      *
510
-     * @param mixed $identifier
510
+     * @param string $identifier
511 511
      *
512 512
      * @return string[][]
513 513
      */
@@ -566,7 +566,7 @@  discard block
 block discarded – undo
566 566
     /**
567 567
      * Loads data for all Types in $status in $groupId.
568 568
      *
569
-     * @param mixed $groupId
569
+     * @param integer $groupId
570 570
      * @param int $status
571 571
      *
572 572
      * @return string[][]
@@ -587,12 +587,12 @@  discard block
 block discarded – undo
587 587
     /**
588 588
      * Inserts a $fieldDefinition for $typeId.
589 589
      *
590
-     * @param mixed $typeId
590
+     * @param integer $typeId
591 591
      * @param int $status
592 592
      * @param \eZ\Publish\SPI\Persistence\Content\Type\FieldDefinition $fieldDefinition
593 593
      * @param \eZ\Publish\Core\Persistence\Legacy\Content\StorageFieldDefinition $storageFieldDef
594 594
      *
595
-     * @return mixed Field definition ID
595
+     * @return integer Field definition ID
596 596
      */
597 597
     public function insertFieldDefinition(
598 598
         $typeId,
@@ -808,9 +808,9 @@  discard block
 block discarded – undo
808 808
     /**
809 809
      * Deletes a field definition.
810 810
      *
811
-     * @param mixed $typeId
811
+     * @param integer $typeId
812 812
      * @param int $status
813
-     * @param mixed $fieldDefinitionId
813
+     * @param integer $fieldDefinitionId
814 814
      */
815 815
     public function deleteFieldDefinition($typeId, $status, $fieldDefinitionId)
816 816
     {
@@ -851,7 +851,7 @@  discard block
 block discarded – undo
851 851
     /**
852 852
      * Updates a $fieldDefinition for $typeId.
853 853
      *
854
-     * @param mixed $typeId
854
+     * @param integer $typeId
855 855
      * @param int $status
856 856
      * @param \eZ\Publish\SPI\Persistence\Content\Type\FieldDefinition $fieldDefinition
857 857
      * @param \eZ\Publish\Core\Persistence\Legacy\Content\StorageFieldDefinition $storageFieldDef
@@ -994,9 +994,8 @@  discard block
 block discarded – undo
994 994
     /**
995 995
      * Update a type with $updateStruct.
996 996
      *
997
-     * @param mixed $typeId
997
+     * @param integer $typeId
998 998
      * @param int $status
999
-     * @param \eZ\Publish\SPI\Persistence\Content\Type\UpdateStruct $updateStruct
1000 999
      */
1001 1000
     public function updateType($typeId, $status, Type $type)
1002 1001
     {
@@ -1039,7 +1038,7 @@  discard block
 block discarded – undo
1039 1038
     /**
1040 1039
      * Loads an array with data about $typeId in $status.
1041 1040
      *
1042
-     * @param mixed $typeId
1041
+     * @param integer $typeId
1043 1042
      * @param int $status
1044 1043
      *
1045 1044
      * @return array Data rows.
@@ -1081,7 +1080,7 @@  discard block
 block discarded – undo
1081 1080
      * Loads an array with data about the type referred to by $remoteId in
1082 1081
      * $status.
1083 1082
      *
1084
-     * @param mixed $remoteId
1083
+     * @param string $remoteId
1085 1084
      * @param int $status
1086 1085
      *
1087 1086
      * @return array(int=>array(string=>mixed)) Data rows.
Please login to merge, or discard this patch.