Passed
Push — master ( 9d9aa8...7a858b )
by Jonas
02:44
created
src/Eloquent/Relations/Traits/JoinsThroughParents.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
         }
Please login to merge, or discard this patch.