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 ( cee407...b743e8 )
by Cristian
13:41 queued 03:28
created
src/app/Console/Commands/Install.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -38,17 +38,17 @@  discard block
 block discarded – undo
38 38
         * "ask" comes by default, when no option provided, like: "backpack:crud:install"
39 39
         * https://laravel.com/docs/5.6/artisan#options
40 40
         */
41
-        $install_elfinder=null;
42
-        if($this->option("elfinder")=="ask"){
41
+        $install_elfinder = null;
42
+        if ($this->option("elfinder") == "ask") {
43 43
             $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');
44 44
         }            
45
-        elseif($this->option("elfinder")=="no"){
46
-            $install_elfinder=false;
45
+        elseif ($this->option("elfinder") == "no") {
46
+            $install_elfinder = false;
47 47
         }
48
-        elseif($this->option("elfinder")=="yes"){
49
-            $install_elfinder=true;            
48
+        elseif ($this->option("elfinder") == "yes") {
49
+            $install_elfinder = true;            
50 50
         }
51
-        else{
51
+        else {
52 52
             $this->error("Option not recognized: ".$elfinderOption);
53 53
             return false;
54 54
         }
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
                     $this->executeProcess('mkdir -p public/uploads');
72 72
                     break;
73 73
                 case '\\': // windows
74
-                    if (! file_exists('public\uploads')) {
74
+                    if (!file_exists('public\uploads')) {
75 75
                         $this->executeProcess('mkdir public\uploads');
76 76
                     }
77 77
                     break;
Please login to merge, or discard this patch.