@@ -169,8 +169,8 @@ |
||
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); |
@@ -39,7 +39,7 @@ |
||
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 |
@@ -23,7 +23,7 @@ |
||
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 | /** |