Completed
Push — master ( f9bb0a...dd27be )
by Jared
01:41
created
src/Query.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -487,7 +487,7 @@
 block discarded – undo
487 487
 
488 488
         $in = $foreignKey.' IN ('.implode(',', $uniqueIds).')';
489 489
         $models = $modelClass::where($in)
490
-                             ->first(self::MAX_LIMIT);
490
+                                ->first(self::MAX_LIMIT);
491 491
 
492 492
         $result = [];
493 493
         foreach ($models as $model) {
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@
 block discarded – undo
129 129
     /**
130 130
      * Sets the sort pattern for the query.
131 131
      *
132
-     * @param array|string $sort
132
+     * @param string $sort
133 133
      *
134 134
      * @return $this
135 135
      */
Please login to merge, or discard this patch.
src/Driver/AbstractDriver.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -272,7 +272,6 @@  discard block
 block discarded – undo
272 272
     /**
273 273
      * Returns a prefixed where statement.
274 274
      *
275
-     * @param string $columns
276 275
      * @param string $tablename
277 276
      *
278 277
      * @return array
@@ -300,7 +299,6 @@  discard block
 block discarded – undo
300 299
     /**
301 300
      * Returns a prefixed sort statement.
302 301
      *
303
-     * @param string $columns
304 302
      * @param string $tablename
305 303
      *
306 304
      * @return array
Please login to merge, or discard this patch.
src/Validator.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -191,7 +191,6 @@
 block discarded – undo
191 191
     /**
192 192
      * Validates an e-mail address.
193 193
      *
194
-     * @param string $email      e-mail address
195 194
      * @param array  $parameters parameters for validation
196 195
      *
197 196
      * @return bool success
Please login to merge, or discard this patch.