@@ -78,7 +78,7 @@ |
||
78 | 78 | { |
79 | 79 | static::treeBoot(); |
80 | 80 | |
81 | - static::deleting(function ($model) { |
|
81 | + static::deleting(function($model) { |
|
82 | 82 | $model->roles()->detach(); |
83 | 83 | }); |
84 | 84 | } |
@@ -55,7 +55,7 @@ |
||
55 | 55 | */ |
56 | 56 | public function condition() |
57 | 57 | { |
58 | - return $this->queries->map(function ($query) { |
|
58 | + return $this->queries->map(function($query) { |
|
59 | 59 | return [$query['method'] => $query['arguments']]; |
60 | 60 | })->toArray(); |
61 | 61 | } |
@@ -288,7 +288,7 @@ |
||
288 | 288 | return ''; |
289 | 289 | } |
290 | 290 | |
291 | - return $tools->map(function ($tool) { |
|
291 | + return $tools->map(function($tool) { |
|
292 | 292 | if ($tool instanceof Renderable) { |
293 | 293 | return $tool->render(); |
294 | 294 | } |
@@ -275,7 +275,7 @@ |
||
275 | 275 | */ |
276 | 276 | protected function renderCustomTools($tools) |
277 | 277 | { |
278 | - return $tools->map(function ($tool) { |
|
278 | + return $tools->map(function($tool) { |
|
279 | 279 | if ($tool instanceof Renderable) { |
280 | 280 | return $tool->render(); |
281 | 281 | } |
@@ -220,7 +220,7 @@ |
||
220 | 220 | ); |
221 | 221 | } |
222 | 222 | |
223 | - $table = $this->model->getConnection()->getTablePrefix() . $this->model->getTable(); |
|
223 | + $table = $this->model->getConnection()->getTablePrefix().$this->model->getTable(); |
|
224 | 224 | /** @var \Doctrine\DBAL\Schema\MySqlSchemaManager $schema */ |
225 | 225 | $schema = $this->model->getConnection()->getDoctrineSchemaManager($table); |
226 | 226 |
@@ -56,7 +56,7 @@ |
||
56 | 56 | */ |
57 | 57 | protected function listAdminCommands() |
58 | 58 | { |
59 | - $commands = collect(Artisan::all())->mapWithKeys(function ($command, $key) { |
|
59 | + $commands = collect(Artisan::all())->mapWithKeys(function($command, $key) { |
|
60 | 60 | if (Str::startsWith($key, 'admin:')) { |
61 | 61 | return [$key => $command]; |
62 | 62 | } |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | $all = $fields->toArray(); |
71 | 71 | |
72 | 72 | foreach ($this->form->rows as $row) { |
73 | - $rowFields = array_map(function ($field) { |
|
73 | + $rowFields = array_map(function($field) { |
|
74 | 74 | return $field['element']; |
75 | 75 | }, $row->getFields()); |
76 | 76 | |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | public function getTabs() |
105 | 105 | { |
106 | 106 | // If there is no active tab, then active the first. |
107 | - if ($this->tabs->filter(function ($tab) { |
|
107 | + if ($this->tabs->filter(function($tab) { |
|
108 | 108 | return $tab['active']; |
109 | 109 | })->isEmpty()) { |
110 | 110 | $first = $this->tabs->first(); |
@@ -105,7 +105,7 @@ |
||
105 | 105 | throw new \InvalidArgumentException("[$model] must be a valid model class"); |
106 | 106 | } |
107 | 107 | |
108 | - $this->options = function ($value) use ($model, $idField, $textField) { |
|
108 | + $this->options = function($value) use ($model, $idField, $textField) { |
|
109 | 109 | if (empty($value)) { |
110 | 110 | return []; |
111 | 111 | } |
@@ -105,7 +105,7 @@ |
||
105 | 105 | throw new \InvalidArgumentException("[$model] must be a valid model class"); |
106 | 106 | } |
107 | 107 | |
108 | - $this->options = function ($value) use ($model, $idField, $textField) { |
|
108 | + $this->options = function($value) use ($model, $idField, $textField) { |
|
109 | 109 | if (empty($value)) { |
110 | 110 | return []; |
111 | 111 | } |