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 3 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.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -40,17 +40,17 @@  discard block
 block discarded – undo
40 40
         */
41 41
         $install_elfinder = null;
42 42
 
43
-        if($this->option("elfinder")=="ask")
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 46
         }
47
-        elseif($this->option("elfinder")=="no")
47
+        elseif ($this->option("elfinder") == "no")
48 48
         {
49
-            $install_elfinder=false;
49
+            $install_elfinder = false;
50 50
         }
51
-        elseif($this->option("elfinder")=="yes")
51
+        elseif ($this->option("elfinder") == "yes")
52 52
         {
53
-            $install_elfinder=true;
53
+            $install_elfinder = true;
54 54
         }
55 55
         else
56 56
         {
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
                     $this->executeProcess('mkdir -p public/uploads');
77 77
                     break;
78 78
                 case '\\': // windows
79
-                    if (! file_exists('public\uploads')) {
79
+                    if (!file_exists('public\uploads')) {
80 80
                         $this->executeProcess('mkdir public\uploads');
81 81
                     }
82 82
                     break;
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.