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 — operation-hooks ( b4d208...da52e4 )
by Pedro
11:38
created
src/app/Http/Controllers/Operations/ListOperation.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
             'operation' => 'list',
29 29
         ]);
30 30
 
31
-        if (! isset($this->setupDetailsRowRoute) || $this->setupDetailsRowRoute === true) {
31
+        if (!isset($this->setupDetailsRowRoute) || $this->setupDetailsRowRoute === true) {
32 32
             Route::get($segment.'/{id}/details', [
33 33
                 'as' => $routeName.'.showDetailsRow',
34 34
                 'uses' => $controller.'@showDetailsRow',
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     {
45 45
         $this->crud->allowAccess('list');
46 46
 
47
-        LifecycleHook::hookInto('list:before_setup', function () {
47
+        LifecycleHook::hookInto('list:before_setup', function() {
48 48
             $this->crud->loadDefaultOperationSettingsFromConfig();
49 49
             $this->crud->setOperationSetting('datatablesUrl', $this->crud->getRoute());
50 50
         });
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
         $search = request()->input('search');
83 83
 
84 84
         // check if length is allowed by developer
85
-        if ($length && ! in_array($length, $this->crud->getPageLengthMenu()[0])) {
85
+        if ($length && !in_array($length, $this->crud->getPageLengthMenu()[0])) {
86 86
             return response()->json([
87 87
                 'error' => 'Unknown page length.',
88 88
             ], 400);
Please login to merge, or discard this patch.