Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Passed
Push — create-setup-cache-class ( bb311c...a76362 )
by Pedro
14:49
created
src/app/View/Components/Datatable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/app/Library/Support/DatatableCache.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.