We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -25,10 +25,10 @@ discard block |
||
25 | 25 | $this->singleSaveAction = [ |
26 | 26 | 'name' => 'save_action_one', |
27 | 27 | 'button_text' => 'custom', |
28 | - 'redirect' => function ($crud, $request, $itemId) { |
|
28 | + 'redirect' => function($crud, $request, $itemId) { |
|
29 | 29 | return $crud->route; |
30 | 30 | }, |
31 | - 'visible' => function ($crud) { |
|
31 | + 'visible' => function($crud) { |
|
32 | 32 | return true; |
33 | 33 | }, |
34 | 34 | ]; |
@@ -36,19 +36,19 @@ discard block |
||
36 | 36 | $this->multipleSaveActions = [ |
37 | 37 | [ |
38 | 38 | 'name' => 'save_action_one', |
39 | - 'redirect' => function ($crud, $request, $itemId) { |
|
39 | + 'redirect' => function($crud, $request, $itemId) { |
|
40 | 40 | return $crud->route; |
41 | 41 | }, |
42 | - 'visible' => function ($crud) { |
|
42 | + 'visible' => function($crud) { |
|
43 | 43 | return true; |
44 | 44 | }, |
45 | 45 | ], |
46 | 46 | [ |
47 | 47 | 'name' => 'save_action_two', |
48 | - 'redirect' => function ($crud, $request, $itemId) { |
|
48 | + 'redirect' => function($crud, $request, $itemId) { |
|
49 | 49 | return $crud->route; |
50 | 50 | }, |
51 | - 'visible' => function ($crud) { |
|
51 | + 'visible' => function($crud) { |
|
52 | 52 | return true; |
53 | 53 | }, |
54 | 54 | ], |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | 'password' => 'test', |
37 | 37 | ]); |
38 | 38 | |
39 | - $request->setRouteResolver(function () use ($request) { |
|
39 | + $request->setRouteResolver(function() use ($request) { |
|
40 | 40 | return (new Route('POST', 'users', ['Backpack\CRUD\Tests\Unit\Http\Controllers\UserCrudController', 'create']))->bind($request); |
41 | 41 | }); |
42 | 42 | |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | 'email' => '', |
77 | 77 | ]); |
78 | 78 | |
79 | - $request->setRouteResolver(function () use ($request) { |
|
79 | + $request->setRouteResolver(function() use ($request) { |
|
80 | 80 | return (new Route('POST', 'users', ['Backpack\CRUD\Tests\Unit\Http\Controllers\UserCrudController', 'create']))->bind($request); |
81 | 81 | }); |
82 | 82 | |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | 'password' => 'test', |
117 | 117 | ]); |
118 | 118 | |
119 | - $request->setRouteResolver(function () use ($request) { |
|
119 | + $request->setRouteResolver(function() use ($request) { |
|
120 | 120 | return (new Route('POST', 'users', ['Backpack\CRUD\Tests\Unit\Http\Controllers\UserCrudController', 'create']))->bind($request); |
121 | 121 | }); |
122 | 122 |
@@ -22,7 +22,7 @@ |
||
22 | 22 | (array) config('backpack.base.middleware_key', 'admin'), |
23 | 23 | 'prefix' => config('backpack.base.route_prefix', 'admin'), |
24 | 24 | ], |
25 | - function () { |
|
25 | + function() { |
|
26 | 26 | Route::crud('users', 'Backpack\CRUD\Tests\Unit\Http\Controllers\UserCrudController'); |
27 | 27 | } |
28 | 28 | ); |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | // |
33 | 33 | // It's done inside a middleware closure in order to have |
34 | 34 | // the complete request inside the CrudPanel object. |
35 | - $this->middleware(function ($request, $next) { |
|
35 | + $this->middleware(function($request, $next) { |
|
36 | 36 | $this->crud = app('crud'); |
37 | 37 | |
38 | 38 | $this->crud->setRequest($request); |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | protected function setupConfigurationForCurrentOperation() |
97 | 97 | { |
98 | 98 | $operationName = $this->crud->getCurrentOperation(); |
99 | - if (! $operationName) { |
|
99 | + if (!$operationName) { |
|
100 | 100 | return; |
101 | 101 | } |
102 | 102 |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | */ |
100 | 100 | public function customOrderBy($column, $columnDirection = 'asc') |
101 | 101 | { |
102 | - if (! isset($column['orderLogic'])) { |
|
102 | + if (!isset($column['orderLogic'])) { |
|
103 | 103 | return $this->query; |
104 | 104 | } |
105 | 105 | |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | */ |
190 | 190 | public function getTotalQueryCount() |
191 | 191 | { |
192 | - if (! $this->getOperationSetting('showEntryCount')) { |
|
192 | + if (!$this->getOperationSetting('showEntryCount')) { |
|
193 | 193 | return 0; |
194 | 194 | } |
195 | 195 | |
@@ -228,7 +228,7 @@ discard block |
||
228 | 228 | */ |
229 | 229 | private function getCountFromQuery(Builder $query) |
230 | 230 | { |
231 | - if (! $this->driverIsSql()) { |
|
231 | + if (!$this->driverIsSql()) { |
|
232 | 232 | return $query->count(); |
233 | 233 | } |
234 | 234 | |
@@ -247,7 +247,7 @@ discard block |
||
247 | 247 | $expressionColumns = []; |
248 | 248 | |
249 | 249 | foreach ($crudQuery->columns ?? [] as $column) { |
250 | - if (! is_string($column) && is_a($column, 'Illuminate\Database\Query\Expression')) { |
|
250 | + if (!is_string($column) && is_a($column, 'Illuminate\Database\Query\Expression')) { |
|
251 | 251 | $expressionColumns[] = $column; |
252 | 252 | } |
253 | 253 | } |
@@ -23,8 +23,7 @@ |
||
23 | 23 | |
24 | 24 | try { |
25 | 25 | $select = app()->version() < 10 ? |
26 | - DB::raw('SHOW COLUMNS FROM `'.$table_prefix.$instance->getTable().'` WHERE Field = "'.$field_name.'"') : |
|
27 | - DB::raw('SHOW COLUMNS FROM `'.$table_prefix.$instance->getTable().'` WHERE Field = "'.$field_name.'"')->getValue($connection->getQueryGrammar()); |
|
26 | + DB::raw('SHOW COLUMNS FROM `'.$table_prefix.$instance->getTable().'` WHERE Field = "'.$field_name.'"') : DB::raw('SHOW COLUMNS FROM `'.$table_prefix.$instance->getTable().'` WHERE Field = "'.$field_name.'"')->getValue($connection->getQueryGrammar()); |
|
28 | 27 | |
29 | 28 | $type = $connection->select($select)[0]->Type; |
30 | 29 | } catch (\Exception $e) { |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | <?php |
29 | 29 | function tree_element($entry, $key, $all_entries, $crud) |
30 | 30 | { |
31 | - if (! isset($entry->tree_element_shown)) { |
|
31 | + if (!isset($entry->tree_element_shown)) { |
|
32 | 32 | // mark the element as shown |
33 | 33 | $all_entries[$key]->tree_element_shown = true; |
34 | 34 | $entry->tree_element_shown = true; |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | <ol class="sortable mt-0"> |
72 | 72 | <?php |
73 | 73 | $all_entries = collect($entries->all())->sortBy('lft')->keyBy($crud->getModel()->getKeyName()); |
74 | - $root_entries = $all_entries->filter(function ($item) { |
|
74 | + $root_entries = $all_entries->filter(function($item) { |
|
75 | 75 | return $item->parent_id == 0; |
76 | 76 | }); |
77 | 77 | foreach ($root_entries as $key => $entry) { |
@@ -63,7 +63,7 @@ |
||
63 | 63 | // we get the first column from database |
64 | 64 | // that is NOT indexed (usually primary, foreign keys) |
65 | 65 | foreach ($columns as $columnName => $columnProperties) { |
66 | - if (! in_array($columnName, $indexedColumns)) { |
|
66 | + if (!in_array($columnName, $indexedColumns)) { |
|
67 | 67 | //check for convention "field<_id>" in case developer didn't add foreign key constraints. |
68 | 68 | if (strpos($columnName, '_id') !== false) { |
69 | 69 | continue; |
@@ -18,7 +18,7 @@ |
||
18 | 18 | 'middleware' => config('backpack.base.web_middleware', 'web'), |
19 | 19 | 'prefix' => config('backpack.base.route_prefix'), |
20 | 20 | ], |
21 | - function () { |
|
21 | + function() { |
|
22 | 22 | // if not otherwise configured, setup the auth routes |
23 | 23 | if (config('backpack.base.setup_auth_routes')) { |
24 | 24 | // Authentication Routes... |