@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | |
44 | 44 | $query->join( |
45 | 45 | $table, |
46 | - function (JoinClause $join) use ($joins) { |
|
46 | + function(JoinClause $join) use ($joins) { |
|
47 | 47 | foreach ($joins as [$first, $second]) { |
48 | 48 | $join->on($first, '=', $second); |
49 | 49 | } |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | if ($this->throughParentInstanceSoftDeletes($throughParent)) { |
55 | 55 | $column = $throughParent->getQualifiedDeletedAtColumn(); |
56 | 56 | |
57 | - $query->withGlobalScope(__CLASS__ . ":$column", function (Builder $query) use ($column) { |
|
57 | + $query->withGlobalScope(__CLASS__.":$column", function(Builder $query) use ($column) { |
|
58 | 58 | $query->whereNull($column); |
59 | 59 | }); |
60 | 60 | } |