Completed
Push — speedup_bulk_content_loading ( 3b124f )
by André
27:45
created
eZ/Publish/Core/Persistence/Legacy/Content/Gateway/DoctrineDatabase.php 1 patch
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -117,9 +117,9 @@  discard block
 block discarded – undo
117 117
      * Inserts a new content object.
118 118
      *
119 119
      * @param \eZ\Publish\SPI\Persistence\Content\CreateStruct $struct
120
-     * @param mixed $currentVersionNo
120
+     * @param integer $currentVersionNo
121 121
      *
122
-     * @return int ID
122
+     * @return string ID
123 123
      */
124 124
     public function insertContentObject(CreateStruct $struct, $currentVersionNo = 1)
125 125
     {
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
      * @param \eZ\Publish\SPI\Persistence\Content\VersionInfo $versionInfo
222 222
      * @param \eZ\Publish\SPI\Persistence\Content\Field[] $fields
223 223
      *
224
-     * @return int ID
224
+     * @return string ID
225 225
      */
226 226
     public function insertVersion(VersionInfo $versionInfo, array $fields)
227 227
     {
@@ -615,7 +615,7 @@  discard block
 block discarded – undo
615 615
      * @param \eZ\Publish\SPI\Persistence\Content\Field $field
616 616
      * @param \eZ\Publish\Core\Persistence\Legacy\Content\StorageFieldValue $value
617 617
      *
618
-     * @return int ID
618
+     * @return string ID
619 619
      */
620 620
     public function insertNewField(Content $content, Field $field, StorageFieldValue $value)
621 621
     {
@@ -1094,7 +1094,7 @@  discard block
 block discarded – undo
1094 1094
      *
1095 1095
      * Result is returned with oldest version first (using version id as it has index and is auto increment).
1096 1096
      *
1097
-     * @param mixed $contentId
1097
+     * @param integer $contentId
1098 1098
      * @param mixed|null $status Optional argument to filter versions by status, like {@see VersionInfo::STATUS_ARCHIVED}.
1099 1099
      * @param int $limit Limit for items returned, -1 means none.
1100 1100
      *
@@ -1162,7 +1162,7 @@  discard block
 block discarded – undo
1162 1162
     /**
1163 1163
      * Returns all version numbers for the given $contentId.
1164 1164
      *
1165
-     * @param mixed $contentId
1165
+     * @param integer $contentId
1166 1166
      *
1167 1167
      * @return int[]
1168 1168
      */
@@ -1860,7 +1860,7 @@  discard block
 block discarded – undo
1860 1860
      *
1861 1861
      * @param \eZ\Publish\SPI\Persistence\Content\Relation\CreateStruct $createStruct
1862 1862
      *
1863
-     * @return int ID the inserted ID
1863
+     * @return string ID the inserted ID
1864 1864
      */
1865 1865
     public function insertRelation(RelationCreateStruct $createStruct)
1866 1866
     {
Please login to merge, or discard this patch.