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 | |
@@ -62,20 +62,20 @@ discard block |
||
| 62 | 62 | include_once __DIR__.'/macros.php'; |
| 63 | 63 | |
| 64 | 64 | // Bind the CrudPanel object to Laravel's service container |
| 65 | - $this->app->scoped('crud', function ($app) { |
|
| 65 | + $this->app->scoped('crud', function($app) { |
|
| 66 | 66 | return new CrudPanel(); |
| 67 | 67 | }); |
| 68 | 68 | |
| 69 | - $this->app->scoped('DatabaseSchema', function ($app) { |
|
| 69 | + $this->app->scoped('DatabaseSchema', function($app) { |
|
| 70 | 70 | return new DatabaseSchema(); |
| 71 | 71 | }); |
| 72 | 72 | |
| 73 | - $this->app->singleton('BackpackViewNamespaces', function ($app) { |
|
| 73 | + $this->app->singleton('BackpackViewNamespaces', function($app) { |
|
| 74 | 74 | return new ViewNamespaces(); |
| 75 | 75 | }); |
| 76 | 76 | |
| 77 | 77 | // Bind the widgets collection object to Laravel's service container |
| 78 | - $this->app->singleton('widgets', function ($app) { |
|
| 78 | + $this->app->singleton('widgets', function($app) { |
|
| 79 | 79 | return new Collection(); |
| 80 | 80 | }); |
| 81 | 81 | |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | $middleware_key = config('backpack.base.middleware_key'); |
| 92 | 92 | $middleware_class = config('backpack.base.middleware_class'); |
| 93 | 93 | |
| 94 | - if (! is_array($middleware_class)) { |
|
| 94 | + if (!is_array($middleware_class)) { |
|
| 95 | 95 | $router->pushMiddlewareToGroup($middleware_key, $middleware_class); |
| 96 | 96 | |
| 97 | 97 | return; |
@@ -207,7 +207,7 @@ discard block |
||
| 207 | 207 | $configs = scandir(__DIR__."/config/backpack/$dir/"); |
| 208 | 208 | $configs = array_diff($configs, ['.', '..']); |
| 209 | 209 | |
| 210 | - if (! count($configs)) { |
|
| 210 | + if (!count($configs)) { |
|
| 211 | 211 | return; |
| 212 | 212 | } |
| 213 | 213 | |
@@ -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) { |
@@ -56,13 +56,13 @@ discard block |
||
| 56 | 56 | ], |
| 57 | 57 | |
| 58 | 58 | // CSS files that are loaded in all pages, using Laravel's mix() helper |
| 59 | - 'mix_styles' => [ // file_path => manifest_directory_path |
|
| 59 | + 'mix_styles' => [// file_path => manifest_directory_path |
|
| 60 | 60 | // 'css/app.css' => '', |
| 61 | 61 | ], |
| 62 | 62 | |
| 63 | 63 | // CSS files that are loaded in all pages, using Laravel's @vite() helper |
| 64 | 64 | // Please note that support for Vite was added in Laravel 9.19. Earlier versions are not able to use this feature. |
| 65 | - 'vite_styles' => [ // resource file_path |
|
| 65 | + 'vite_styles' => [// resource file_path |
|
| 66 | 66 | // 'resources/css/app.css' => '', |
| 67 | 67 | ], |
| 68 | 68 | |
@@ -73,8 +73,8 @@ discard block |
||
| 73 | 73 | 'class' => [ |
| 74 | 74 | 'header' => 'header', |
| 75 | 75 | 'body' => 'app aside-menu-fixed sidebar-lg-show', // TODO: why used nowhere?! |
| 76 | - 'sidebar' => 'sidebar sidebar-dark sidebar-fixed', // TODO: why used nowhere?! |
|
| 77 | - 'footer' => 'app-footer d-print-none', // TODO: why used nowhere?! |
|
| 76 | + 'sidebar' => 'sidebar sidebar-dark sidebar-fixed', // TODO: why used nowhere?! |
|
| 77 | + 'footer' => 'app-footer d-print-none', // TODO: why used nowhere?! |
|
| 78 | 78 | ], |
| 79 | 79 | |
| 80 | 80 | // ------ |
@@ -113,12 +113,12 @@ discard block |
||
| 113 | 113 | ], |
| 114 | 114 | |
| 115 | 115 | // JS files that are loaded in all pages, using Laravel's mix() helper |
| 116 | - 'mix_scripts' => [ // file_path => manifest_directory_path |
|
| 116 | + 'mix_scripts' => [// file_path => manifest_directory_path |
|
| 117 | 117 | // 'js/app.js' => '', |
| 118 | 118 | ], |
| 119 | 119 | |
| 120 | 120 | // JS files that are loaded in all pages, using Laravel's @vite() helper |
| 121 | - 'vite_scripts' => [ // resource file_path |
|
| 121 | + 'vite_scripts' => [// resource file_path |
|
| 122 | 122 | // 'resources/js/app.js', |
| 123 | 123 | ], |
| 124 | 124 | |
@@ -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) { |