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
Pull Request — main (#5552)
by Pedro
16:48 queued 01:51
created
src/app/Console/Commands/PublishHeaderMetas.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
         ];
52 52
 
53 53
         foreach ($fileToPublish as $destination => $stub) {
54
-            if (! is_string($destination)) {
54
+            if (!is_string($destination)) {
55 55
                 $destination = $stub;
56 56
                 $stub = null;
57 57
             }
@@ -62,11 +62,11 @@  discard block
 block discarded – undo
62 62
                 continue;
63 63
             }
64 64
 
65
-            if (! File::isDirectory(dirname($destination))) {
65
+            if (!File::isDirectory(dirname($destination))) {
66 66
                 File::makeDirectory(dirname($destination), 0755, true);
67 67
             }
68 68
 
69
-            if (! $stub) {
69
+            if (!$stub) {
70 70
                 File::copy(__DIR__.'/../../../public/'.basename($destination), $destination);
71 71
                 $this->info("File {$destination} published.");
72 72
                 continue;
Please login to merge, or discard this patch.