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

Completed
Push — master ( 4f0b82...149da0 )
by Cristian
13:42 queued 09:15
created
src/app/Console/Commands/Install.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
     /**
31 31
      * Execute the console command.
32 32
      *
33
-     * @return mixed
33
+     * @return false|null
34 34
      */
35 35
     public function handle()
36 36
     {
Please login to merge, or discard this patch.
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -43,16 +43,13 @@
 block discarded – undo
43 43
         if($this->option("elfinder")=="ask")
44 44
         {
45 45
             $install_elfinder = $this->confirm("Install & set up the File Manager (elFinder)? The admin will be able to browse the 'uploads' folder and create/read/modify files and folders there.", 'yes');
46
-        }
47
-        elseif($this->option("elfinder")=="no")
46
+        } elseif($this->option("elfinder")=="no")
48 47
         {
49 48
             $install_elfinder=false;
50
-        }
51
-        elseif($this->option("elfinder")=="yes")
49
+        } elseif($this->option("elfinder")=="yes")
52 50
         {
53 51
             $install_elfinder=true;
54
-        }
55
-        else
52
+        } else
56 53
         {
57 54
             $this->error("Option not recognized: ".$elfinderOption);
58 55
             return false;
Please login to merge, or discard this patch.