Completed
Push — master ( ff044d...68f932 )
by Jared
02:21
created
src/Query.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@
 block discarded – undo
126 126
     /**
127 127
      * Sets the sort pattern for the query.
128 128
      *
129
-     * @param array|string $sort
129
+     * @param string $sort
130 130
      *
131 131
      * @return self
132 132
      */
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -379,7 +379,7 @@
 block discarded – undo
379 379
         $uniqueIds = array_unique($ids);
380 380
         $in = 'id IN ('.implode(',', $uniqueIds).')';
381 381
         $models = $modelClass::where($in)
382
-                             ->first(self::MAX_LIMIT);
382
+                                ->first(self::MAX_LIMIT);
383 383
 
384 384
         $result = [];
385 385
         foreach ($models as $model) {
Please login to merge, or discard this patch.