@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | |
| 58 | 58 | $keys = $this->getKeys($models, $this->parentKey); |
| 59 | 59 | |
| 60 | - $constraint = function (Builder $query) use ($whereIn, $column, $keys) { |
|
| 60 | + $constraint = function(Builder $query) use ($whereIn, $column, $keys) { |
|
| 61 | 61 | $query->$whereIn($column, $keys); |
| 62 | 62 | }; |
| 63 | 63 | |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | */ |
| 81 | 81 | protected function buildDictionary(Collection $results) |
| 82 | 82 | { |
| 83 | - return $results->mapToDictionary(function (Model $result) { |
|
| 83 | + return $results->mapToDictionary(function(Model $result) { |
|
| 84 | 84 | return [$result->getFirstPathSegment() => $result]; |
| 85 | 85 | })->all(); |
| 86 | 86 | } |