@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | public static function bootSortableTrait() |
18 | 18 | { |
19 | 19 | static::creating( |
20 | - function ($model) { |
|
20 | + function($model) { |
|
21 | 21 | $sortableGroupField = $model->getSortableGroupField(); |
22 | 22 | |
23 | 23 | if ($sortableGroupField) { |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | /** @var \Illuminate\Database\Connection $connection */ |
75 | 75 | $connection = $this->getConnection(); |
76 | 76 | |
77 | - $this->_transaction(function () use ($connection, $entity) { |
|
77 | + $this->_transaction(function() use ($connection, $entity) { |
|
78 | 78 | /** @var \Illuminate\Database\Eloquent\Builder $query */ |
79 | 79 | $query = $connection->table($this->getTable()); |
80 | 80 | $query = $this->_applySortableGroup($query); |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | /** @var \Illuminate\Database\Connection $connection */ |
126 | 126 | $connection = $this->getConnection(); |
127 | 127 | |
128 | - $this->_transaction(function () use ($connection, $entity) { |
|
128 | + $this->_transaction(function() use ($connection, $entity) { |
|
129 | 129 | $query = $connection->table($this->getTable()); |
130 | 130 | $query = $this->_applySortableGroup($query); |
131 | 131 |