Completed
Push — master ( 1ee112...44d5bc )
by Jonas
02:31
created
src/HasEagerLimit.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -169,8 +169,8 @@
 block discarded – undo
169 169
      * @return \Illuminate\Database\Eloquent\Relations\MorphToMany
170 170
      */
171 171
     protected function newMorphToMany(Builder $query, Model $parent, $name, $table, $foreignPivotKey,
172
-                                      $relatedPivotKey, $parentKey, $relatedKey,
173
-                                      $relationName = null, $inverse = false)
172
+                                        $relatedPivotKey, $parentKey, $relatedKey,
173
+                                        $relationName = null, $inverse = false)
174 174
     {
175 175
         return new MorphToMany($query, $parent, $name, $table, $foreignPivotKey, $relatedPivotKey, $parentKey, $relatedKey,
176 176
             $relationName, $inverse);
Please login to merge, or discard this patch.
src/Builder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     {
40 40
         $results = parent::get($columns);
41 41
 
42
-        if (! $this->groupLimit) {
42
+        if (!$this->groupLimit) {
43 43
             return $results;
44 44
         }
45 45
 
Please login to merge, or discard this patch.
src/Grammars/MySqlGrammar.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     {
24 24
         $version = $query->getConnection()->getPdo()->getAttribute(PDO::ATTR_SERVER_VERSION);
25 25
 
26
-        return version_compare($version, '8.0.11') < 0 && ! Str::contains($version, 'MariaDB');
26
+        return version_compare($version, '8.0.11') < 0 && !Str::contains($version, 'MariaDB');
27 27
     }
28 28
 
29 29
     /**
Please login to merge, or discard this patch.