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 — save-to-mobile-without-address... ( f5fd7b...75f650 )
by Pedro
12:42
created
src/app/Console/Commands/PublishHeaderMetas.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
      */
28 28
     public function handle()
29 29
     {
30
-        $appName = $this->ask('What is the application name ?', config('app.name') . ' Backoffice');
30
+        $appName = $this->ask('What is the application name ?', config('app.name').' Backoffice');
31 31
         $backpackPrefix = config('backpack.base.route_prefix');
32 32
         $appColor = $this->ask('What is the application color ?', '#161c2d');
33 33
         $pathPrefix = $this->ask('Where should icon files be published relative to public folder?');
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
         ];
62 62
 
63 63
         foreach ($filesToPublish as $destination => $stub) {
64
-            if (! is_string($destination)) {
64
+            if (!is_string($destination)) {
65 65
                 $destination = $stub;
66 66
                 $stub = null;
67 67
             }
@@ -72,11 +72,11 @@  discard block
 block discarded – undo
72 72
                 continue;
73 73
             }
74 74
 
75
-            if (! File::isDirectory(dirname($destination))) {
75
+            if (!File::isDirectory(dirname($destination))) {
76 76
                 File::makeDirectory(dirname($destination), 0755, true);
77 77
             }
78 78
 
79
-            if (! $stub) {
79
+            if (!$stub) {
80 80
                 File::copy(__DIR__.'/../../../public/'.basename($destination), $destination);
81 81
                 $this->info("File {$destination} published.");
82 82
                 continue;
Please login to merge, or discard this patch.