We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -44,7 +44,7 @@ |
||
44 | 44 | // is somewhat superfluous.. however if we are POSTing, it makes sense to actually have data to post. |
45 | 45 | // Perhaps the route shoud be better named to reflect this (e.g. just /model/{id}/revisions) (??) |
46 | 46 | $revisionId = \Request::input('revision_id', false); |
47 | - if (! $revisionId) { |
|
47 | + if (!$revisionId) { |
|
48 | 48 | abort(500, 'Can\'t restore revision without revision_id'); |
49 | 49 | } else { |
50 | 50 | $this->crud->restoreRevision($id, $revisionId); // do the update |
@@ -174,7 +174,7 @@ |
||
174 | 174 | { |
175 | 175 | $this->crud->hasAccessOrFail('reorder'); |
176 | 176 | |
177 | - if (! $this->crud->isReorderEnabled()) { |
|
177 | + if (!$this->crud->isReorderEnabled()) { |
|
178 | 178 | abort(403, 'Reorder is disabled.'); |
179 | 179 | } |
180 | 180 |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | |
15 | 15 | // crate an array with the names of the searchable columns |
16 | 16 | $columns = collect($this->crud->columns) |
17 | - ->reject(function ($column, $key) { |
|
17 | + ->reject(function($column, $key) { |
|
18 | 18 | // the select_multiple columns are not searchable |
19 | 19 | return isset($column['type']) && $column['type'] == 'select_multiple'; |
20 | 20 | }) |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | $dataTable = new \LiveControl\EloquentDataTable\DataTable($this->crud->query, $columns); |
28 | 28 | |
29 | 29 | // make the datatable use the column types instead of just echoing the text |
30 | - $dataTable->setFormatRowFunction(function ($entry) { |
|
30 | + $dataTable->setFormatRowFunction(function($entry) { |
|
31 | 31 | // get the actual HTML for each row's cell |
32 | 32 | $row_items = $this->crud->getRowViews($entry, $this->crud); |
33 | 33 |