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
Pull Request — v6 (#192)
by Cristian
30s queued 20s
created
src/Console/Commands/Views/WidgetBackpackCommand.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,8 +58,7 @@
 block discarded – undo
58 58
     {
59 59
         if ($this->sourceViewNamespace) {
60 60
             $themePath = Str::contains($this->sourceViewNamespace, '::') ?
61
-                            Str::before($this->sourceViewNamespace, '::') :
62
-                            Str::beforeLast($this->sourceViewNamespace, '.');
61
+                            Str::before($this->sourceViewNamespace, '::') : Str::beforeLast($this->sourceViewNamespace, '.');
63 62
 
64 63
             $themePath = Str::replace('.', '/', $themePath);
65 64
 
Please login to merge, or discard this patch.
src/Console/Commands/Views/PublishOrCreateViewBackpackCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
                 $this->sourceFile = realpath(substr($from, 1));
106 106
             }
107 107
 
108
-            if (! $this->sourceFile) {
108
+            if (!$this->sourceFile) {
109 109
                 $this->errorProgressBlock();
110 110
                 $this->note("$this->type '$from' does not exist!", 'red');
111 111
                 $this->newLine();
Please login to merge, or discard this patch.