We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -2,14 +2,11 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Backpack\CRUD\app\Http\Controllers; |
| 4 | 4 | |
| 5 | +use Backpack\CRUD\CrudPanel; |
|
| 6 | +use Backpack\CRUD\app\Http\Requests\CrudRequest as UpdateRequest; |
|
| 5 | 7 | use Illuminate\Foundation\Bus\DispatchesJobs; |
| 6 | 8 | use Illuminate\Foundation\Validation\ValidatesRequests; |
| 7 | 9 | use Illuminate\Routing\Controller as BaseController; |
| 8 | -use Illuminate\Support\Facades\Form as Form; |
|
| 9 | - |
|
| 10 | -use Backpack\CRUD\app\Http\Requests\CrudRequest as StoreRequest; |
|
| 11 | -use Backpack\CRUD\app\Http\Requests\CrudRequest as UpdateRequest; |
|
| 12 | -use Backpack\CRUD\CrudPanel; |
|
| 13 | 10 | |
| 14 | 11 | // CRUD Traits for non-core features |
| 15 | 12 | use Backpack\CRUD\app\Http\Controllers\CrudFeatures\AjaxTable; |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | |
| 32 | 32 | // call the setup function inside this closure to also have the request there |
| 33 | 33 | // this way, developers can use things stored in session (auth variables, etc) |
| 34 | - $this->middleware(function ($request, $next) { |
|
| 34 | + $this->middleware(function($request, $next) { |
|
| 35 | 35 | $this->setup(); |
| 36 | 36 | return $next($request); |
| 37 | 37 | }); |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | $this->data['title'] = ucfirst($this->crud->entity_name_plural); |
| 57 | 57 | |
| 58 | 58 | // get all entries if AJAX is not enabled |
| 59 | - if (! $this->data['crud']->ajaxTable()) { |
|
| 59 | + if (!$this->data['crud']->ajaxTable()) { |
|
| 60 | 60 | $this->data['entries'] = $this->data['crud']->getEntries(); |
| 61 | 61 | } |
| 62 | 62 | |
@@ -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 |
@@ -4,7 +4,7 @@ |
||
| 4 | 4 | |
| 5 | 5 | trait Reorder { |
| 6 | 6 | |
| 7 | - /** |
|
| 7 | + /** |
|
| 8 | 8 | * Reorder the items in the database using the Nested Set pattern. |
| 9 | 9 | * |
| 10 | 10 | * Database columns needed: id, parent_id, lft, rgt, depth, name/title |
@@ -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 | |
@@ -4,7 +4,7 @@ |
||
| 4 | 4 | |
| 5 | 5 | trait AjaxTable { |
| 6 | 6 | |
| 7 | - /** |
|
| 7 | + /** |
|
| 8 | 8 | * Respond with the JSON of one or more rows, depending on the POST parameters. |
| 9 | 9 | * @return JSON Array of cells in HTML form. |
| 10 | 10 | */ |
@@ -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 | |
@@ -4,7 +4,7 @@ |
||
| 4 | 4 | |
| 5 | 5 | trait ShowDetailsRow { |
| 6 | 6 | |
| 7 | - /** |
|
| 7 | + /** |
|
| 8 | 8 | * Used with AJAX in the list view (datatables) to show extra information about that row that didn't fit in the table. |
| 9 | 9 | * It defaults to showing some dummy text. |
| 10 | 10 | * |