Passed
Pull Request — master (#1637)
by Rafael
04:15
created
Classes/IndexQueue/Item.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -155,7 +155,7 @@
 block discarded – undo
155 155
     }
156 156
 
157 157
     /**
158
-     * @return int|mixed
158
+     * @return integer
159 159
      */
160 160
     public function getIndexQueueUid()
161 161
     {
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -319,7 +319,9 @@
 block discarded – undo
319 319
                 'property_value' => $propertyValue
320 320
             ];
321 321
         }
322
-        if (empty($properties)) return;
322
+        if (empty($properties)) {
323
+            return;
324
+        }
323 325
         $this->indexQueueIndexingPropertyRepository->bulkInsert($properties);
324 326
     }
325 327
 
Please login to merge, or discard this patch.