Passed
Push — master ( 9410bf...5544e8 )
by Jonas
08:37
created
src/Eloquent/HasRecursiveRelationships.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -269,7 +269,7 @@
 block discarded – undo
269 269
      */
270 270
     public function scopeTree(Builder $query)
271 271
     {
272
-        $constraint = function (Builder $query) {
272
+        $constraint = function(Builder $query) {
273 273
             $query->isRoot();
274 274
         };
275 275
         
Please login to merge, or discard this patch.
src/Eloquent/Relations/IsRecursiveRelation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
      */
41 41
     protected function buildDictionary(Collection $results)
42 42
     {
43
-        return $results->mapToDictionary(function (Model $result) {
43
+        return $results->mapToDictionary(function(Model $result) {
44 44
             return [$result->getFirstPathSegment() => $result];
45 45
         })->all();
46 46
     }
Please login to merge, or discard this patch.
src/Eloquent/Relations/Siblings.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -127,9 +127,9 @@  discard block
 block discarded – undo
127 127
         $second = $parentQuery->qualifyColumn($this->localKey);
128 128
 
129 129
         $query->select($columns)
130
-            ->where(function (Builder $query) use ($first, $second) {
130
+            ->where(function(Builder $query) use ($first, $second) {
131 131
                 $query->whereColumn($first, '=', $second)
132
-                    ->orWhere(function (Builder $query) use ($first, $second) {
132
+                    ->orWhere(function(Builder $query) use ($first, $second) {
133 133
                         $query->whereNull($first)->whereNull($second);
134 134
                     });
135 135
             });
@@ -165,9 +165,9 @@  discard block
 block discarded – undo
165 165
         $second = $this->getQualifiedParentKeyName();
166 166
 
167 167
         $query->select($columns)
168
-            ->where(function (Builder $query) use ($first, $second) {
168
+            ->where(function(Builder $query) use ($first, $second) {
169 169
                 $query->whereColumn($first, '=', $second)
170
-                    ->orWhere(function (Builder $query) use ($first, $second) {
170
+                    ->orWhere(function(Builder $query) use ($first, $second) {
171 171
                         $query->whereNull($first)->whereNull($second);
172 172
                     });
173 173
             });
Please login to merge, or discard this patch.
src/Eloquent/Relations/Descendants.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     public function addConstraints()
22 22
     {
23 23
         if (static::$constraints) {
24
-            $constraint = function (Builder $query) {
24
+            $constraint = function(Builder $query) {
25 25
                 if ($this->andSelf) {
26 26
                     $query->where($this->getQualifiedParentKeyName(), '=', $this->getParentKey());
27 27
                 } else {
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 
49 49
         $keys = $this->getKeys($models, $this->localKey);
50 50
 
51
-        $constraint = function (Builder $query) use ($models, $whereIn, $column, $keys) {
51
+        $constraint = function(Builder $query) use ($models, $whereIn, $column, $keys) {
52 52
             $query->$whereIn($column, $keys);
53 53
         };
54 54
 
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 
97 97
         $foreignKey = $this->getForeignKeyName();
98 98
 
99
-        return $results->mapToDictionary(function (Model $result) use ($dictionary, $foreignKey) {
99
+        return $results->mapToDictionary(function(Model $result) use ($dictionary, $foreignKey) {
100 100
             if ($result->hasNestedPath()) {
101 101
                 $key = $dictionary[$result->getFirstPathSegment()]->{$foreignKey};
102 102
             } else {
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
             ? $query->getQuery()->from.'.'.$this->localKey
126 126
             : $this->foreignKey;
127 127
 
128
-        $constraint = function (Builder $query) use ($first) {
128
+        $constraint = function(Builder $query) use ($first) {
129 129
             $query->whereColumn(
130 130
                 $first,
131 131
                 '=',
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
             ? $table.'.'.$this->localKey
157 157
             : $table.'.'.$this->getForeignKeyName();
158 158
 
159
-        $constraint = function (Builder $query) use ($first) {
159
+        $constraint = function(Builder $query) use ($first) {
160 160
             $query->whereColumn(
161 161
                 $first,
162 162
                 '=',
Please login to merge, or discard this patch.
src/Eloquent/Relations/Ancestors.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
     public function addConstraints()
19 19
     {
20 20
         if (static::$constraints) {
21
-            $constraint = function (Builder $query) {
21
+            $constraint = function(Builder $query) {
22 22
                 $key = $this->andSelf ? $this->getParentKey() : $this->getForeignKey();
23 23
 
24 24
                 $query->where($this->getQualifiedParentKeyName(), '=', $key);
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
         $keys = $this->getKeys($models, $key);
44 44
 
45
-        $constraint = function (Builder $query) use ($whereIn, $keys) {
45
+        $constraint = function(Builder $query) use ($whereIn, $keys) {
46 46
             $query->$whereIn($this->getQualifiedParentKeyName(), $keys);
47 47
         };
48 48
 
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
     {
61 61
         $keys = parent::getKeys($models, $key);
62 62
 
63
-        return array_filter($keys, function ($value) {
63
+        return array_filter($keys, function($value) {
64 64
             return !is_null($value);
65 65
         });
66 66
     }
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 
121 121
         $key = $this->andSelf ? $this->localKey : $this->getForeignKeyName();
122 122
 
123
-        $constraint = function (Builder $query) use ($key) {
123
+        $constraint = function(Builder $query) use ($key) {
124 124
             $query->whereColumn(
125 125
                 $query->getQuery()->from.'.'.$this->localKey,
126 126
                 '=',
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
 
150 150
         $key = $this->andSelf ? $this->localKey : $this->getForeignKeyName();
151 151
 
152
-        $constraint = function (Builder $query) use ($table, $key) {
152
+        $constraint = function(Builder $query) use ($table, $key) {
153 153
             $query->whereColumn(
154 154
                 $table.'.'.$this->localKey,
155 155
                 '=',
Please login to merge, or discard this patch.