We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -49,7 +49,7 @@ |
||
49 | 49 | */ |
50 | 50 | public function settings() |
51 | 51 | { |
52 | - return \Arr::sort($this->settings, function ($value, $key) { |
|
52 | + return \Arr::sort($this->settings, function($value, $key) { |
|
53 | 53 | return $key; |
54 | 54 | }); |
55 | 55 | } |
@@ -24,11 +24,11 @@ discard block |
||
24 | 24 | |
25 | 25 | $saveOptions = collect($permissions) |
26 | 26 | // Restrict list to allowed actions. |
27 | - ->filter(function ($action, $permission) { |
|
27 | + ->filter(function($action, $permission) { |
|
28 | 28 | return $this->hasAccess($permission); |
29 | 29 | }) |
30 | 30 | // Generate list of possible actions. |
31 | - ->mapWithKeys(function ($action, $permission) { |
|
31 | + ->mapWithKeys(function($action, $permission) { |
|
32 | 32 | return [$action => $this->getSaveActionButtonName($action)]; |
33 | 33 | }) |
34 | 34 | ->all(); |
@@ -63,8 +63,7 @@ discard block |
||
63 | 63 | */ |
64 | 64 | public function setSaveAction($forceSaveAction = null) |
65 | 65 | { |
66 | - $saveAction = $forceSaveAction ?: |
|
67 | - \Request::input('save_action', config('backpack.crud.default_save_action', 'save_and_back')); |
|
66 | + $saveAction = $forceSaveAction ?: \Request::input('save_action', config('backpack.crud.default_save_action', 'save_and_back')); |
|
68 | 67 | |
69 | 68 | if (config('backpack.crud.show_save_action_change', true) && |
70 | 69 | session('save_action', 'save_and_back') !== $saveAction) { |
@@ -43,7 +43,7 @@ |
||
43 | 43 | ], |
44 | 44 | |
45 | 45 | // CSS files that are loaded in all pages, using Laravel's mix() helper |
46 | - 'mix_styles' => [ // file_path => manifest_directory_path |
|
46 | + 'mix_styles' => [// file_path => manifest_directory_path |
|
47 | 47 | // 'css/app.css' => '', |
48 | 48 | ], |
49 | 49 |
@@ -17,7 +17,7 @@ |
||
17 | 17 | return; |
18 | 18 | } |
19 | 19 | |
20 | - if (! $this->validCode(config('backpack.base.license_code'))) { |
|
20 | + if (!$this->validCode(config('backpack.base.license_code'))) { |
|
21 | 21 | \Alert::add('warning', "<strong>You're using unlicensed software.</strong> Please ask your web developer to <a target='_blank' class='alert-link text-white' href='http://backpackforlaravel.com'>purchase a license code</a> to hide this message."); |
22 | 22 | } |
23 | 23 | } |
@@ -71,7 +71,7 @@ |
||
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) { |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | public function register() |
55 | 55 | { |
56 | 56 | // Bind the CrudPanel object to Laravel's service container |
57 | - $this->app->singleton('crud', function ($app) { |
|
57 | + $this->app->singleton('crud', function($app) { |
|
58 | 58 | return new \Backpack\CRUD\app\Library\CrudPanel\CrudPanel($app); |
59 | 59 | }); |
60 | 60 | |
@@ -195,7 +195,7 @@ discard block |
||
195 | 195 | */ |
196 | 196 | private function addRouteMacro() |
197 | 197 | { |
198 | - Route::macro('crud', function ($name, $controller) { |
|
198 | + Route::macro('crud', function($name, $controller) { |
|
199 | 199 | // put together the route name prefix, |
200 | 200 | // as passed to the Route::group() statements |
201 | 201 | $routeName = ''; |
@@ -49,7 +49,7 @@ |
||
49 | 49 | private function runConsoleCommand($command) |
50 | 50 | { |
51 | 51 | $process = new Process($command, null, null, null, 60, null); |
52 | - $process->run(function ($type, $buffer) { |
|
52 | + $process->run(function($type, $buffer) { |
|
53 | 53 | if (Process::ERR === $type) { |
54 | 54 | $this->line($buffer); |
55 | 55 | } else { |
@@ -127,7 +127,7 @@ |
||
127 | 127 | $this->echo('info', $beforeNotice ? ' '.$beforeNotice : $command); |
128 | 128 | |
129 | 129 | $process = new Process($command, null, null, null, $this->option('timeout'), null); |
130 | - $process->run(function ($type, $buffer) { |
|
130 | + $process->run(function($type, $buffer) { |
|
131 | 131 | if (Process::ERR === $type) { |
132 | 132 | $this->echo('comment', $buffer); |
133 | 133 | } else { |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | |
67 | 67 | $process = new Process($command, null, null, null, 300, null); |
68 | 68 | |
69 | - $process->run(function ($type, $buffer) { |
|
69 | + $process->run(function($type, $buffer) { |
|
70 | 70 | if (Process::ERR === $type) { |
71 | 71 | $this->line($buffer); |
72 | 72 | } else { |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | |
95 | 95 | // otherwise, in case the last line HAS been modified |
96 | 96 | // return the last line that has an ending in it |
97 | - $possible_end_lines = array_filter($file_lines, function ($k) { |
|
97 | + $possible_end_lines = array_filter($file_lines, function($k) { |
|
98 | 98 | return strpos($k, '});') === 0; |
99 | 99 | }); |
100 | 100 |