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 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.
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -41,14 +41,11 @@
 block discarded – undo
41 41
         $install_elfinder=null;
42 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
-        }            
45
-        elseif($this->option("elfinder")=="no"){
44
+        } elseif($this->option("elfinder")=="no"){
46 45
             $install_elfinder=false;
47
-        }
48
-        elseif($this->option("elfinder")=="yes"){
46
+        } elseif($this->option("elfinder")=="yes"){
49 47
             $install_elfinder=true;            
50
-        }
51
-        else{
48
+        } else{
52 49
             $this->error("Option not recognized: ".$elfinderOption);
53 50
             return false;
54 51
         }
Please login to merge, or discard this 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.