We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -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 | ); |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | */ |
58 | 58 | public function getEntry($id) |
59 | 59 | { |
60 | - if (! $this->entry) { |
|
60 | + if (!$this->entry) { |
|
61 | 61 | $this->eagerLoadRelationships('fields'); |
62 | 62 | $this->entry = $this->query->findOrFail($id); |
63 | 63 | $this->entry = $this->entry->withFakes(); |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | */ |
76 | 76 | public function getEntryWithLocale($id) |
77 | 77 | { |
78 | - if (! $this->entry) { |
|
78 | + if (!$this->entry) { |
|
79 | 79 | $this->entry = $this->getEntry($id); |
80 | 80 | } |
81 | 81 | |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | */ |
211 | 211 | public function enableDetailsRow() |
212 | 212 | { |
213 | - if (! backpack_pro()) { |
|
213 | + if (!backpack_pro()) { |
|
214 | 214 | throw new BackpackProRequiredException('Details row'); |
215 | 215 | } |
216 | 216 | |
@@ -309,7 +309,7 @@ discard block |
||
309 | 309 | // we will apply the same labels as the values to the menu if developer didn't |
310 | 310 | $this->abortIfInvalidPageLength($menu[0]); |
311 | 311 | |
312 | - if (! isset($menu[1]) || ! is_array($menu[1])) { |
|
312 | + if (!isset($menu[1]) || !is_array($menu[1])) { |
|
313 | 313 | $menu[1] = $menu[0]; |
314 | 314 | } |
315 | 315 | } else { |
@@ -397,7 +397,7 @@ discard block |
||
397 | 397 | */ |
398 | 398 | public function enableExportButtons() |
399 | 399 | { |
400 | - if (! backpack_pro()) { |
|
400 | + if (!backpack_pro()) { |
|
401 | 401 | throw new BackpackProRequiredException('Export buttons'); |
402 | 402 | } |
403 | 403 |
@@ -68,20 +68,20 @@ discard block |
||
68 | 68 | include_once __DIR__.'/macros.php'; |
69 | 69 | |
70 | 70 | // Bind the CrudPanel object to Laravel's service container |
71 | - $this->app->scoped('crud', function ($app) { |
|
71 | + $this->app->scoped('crud', function($app) { |
|
72 | 72 | return new CrudPanel(); |
73 | 73 | }); |
74 | 74 | |
75 | - $this->app->scoped('DatabaseSchema', function ($app) { |
|
75 | + $this->app->scoped('DatabaseSchema', function($app) { |
|
76 | 76 | return new DatabaseSchema(); |
77 | 77 | }); |
78 | 78 | |
79 | - $this->app->singleton('BackpackViewNamespaces', function ($app) { |
|
79 | + $this->app->singleton('BackpackViewNamespaces', function($app) { |
|
80 | 80 | return new ViewNamespaces(); |
81 | 81 | }); |
82 | 82 | |
83 | 83 | // Bind the widgets collection object to Laravel's service container |
84 | - $this->app->singleton('widgets', function ($app) { |
|
84 | + $this->app->singleton('widgets', function($app) { |
|
85 | 85 | return new Collection(); |
86 | 86 | }); |
87 | 87 | |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | $middleware_key = config('backpack.base.middleware_key'); |
98 | 98 | $middleware_class = config('backpack.base.middleware_class'); |
99 | 99 | |
100 | - if (! is_array($middleware_class)) { |
|
100 | + if (!is_array($middleware_class)) { |
|
101 | 101 | $router->pushMiddlewareToGroup($middleware_key, $middleware_class); |
102 | 102 | |
103 | 103 | return; |
@@ -213,7 +213,7 @@ discard block |
||
213 | 213 | $operationConfigs = scandir(__DIR__.'/config/backpack/operations/'); |
214 | 214 | $operationConfigs = array_diff($operationConfigs, ['.', '..']); |
215 | 215 | |
216 | - if (! count($operationConfigs)) { |
|
216 | + if (!count($operationConfigs)) { |
|
217 | 217 | return; |
218 | 218 | } |
219 | 219 | |
@@ -281,7 +281,7 @@ discard block |
||
281 | 281 | |
282 | 282 | private function registerQueryCacheEvents(): void |
283 | 283 | { |
284 | - DB::listen(function (QueryExecuted $q) { |
|
284 | + DB::listen(function(QueryExecuted $q) { |
|
285 | 285 | if ($q->connection->hasModifiedRecords()) { |
286 | 286 | app('crud')->flushQueryCache(); |
287 | 287 | } |
@@ -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 |
@@ -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... |