We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -38,7 +38,7 @@ |
||
38 | 38 | |
39 | 39 | } |
40 | 40 | |
41 | - if (! $this->crud->has('list.datatablesUrl')) { |
|
41 | + if (!$this->crud->has('list.datatablesUrl')) { |
|
42 | 42 | $this->crud->set('list.datatablesUrl', $this->crud->getRoute()); |
43 | 43 | } |
44 | 44 |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | */ |
27 | 27 | public function cacheForComponent(string $tableId, string $controllerClass, ?\Closure $setup = null, ?string $name = null, ?CrudPanel $crud = null): bool |
28 | 28 | { |
29 | - if (! $setup) { |
|
29 | + if (!$setup) { |
|
30 | 30 | return false; |
31 | 31 | } |
32 | 32 | |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | // Check if the request has a datatable_id parameter |
88 | 88 | $tableId = request('datatable_id'); |
89 | 89 | |
90 | - if (! $tableId) { |
|
90 | + if (!$tableId) { |
|
91 | 91 | \Log::debug('Missing datatable_id in request parameters'); |
92 | 92 | |
93 | 93 | return false; |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | public function applySetupClosure(CrudPanel $crud, string $controllerClass, \Closure $setupClosure, $entry = null): bool |
109 | 109 | { |
110 | 110 | $originalSetup = $setupClosure; |
111 | - $modifiedSetup = function ($crud, $entry) use ($originalSetup, $controllerClass) { |
|
111 | + $modifiedSetup = function($crud, $entry) use ($originalSetup, $controllerClass) { |
|
112 | 112 | CrudManager::setActiveController($controllerClass); |
113 | 113 | |
114 | 114 | // Run the original closure |