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 ( c28fdb...0e7f69 )
by Cristian
04:08
created
src/app/Console/Commands/Overwrite.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
         $sourceFile = $this->packageDir.$file.'.blade.php';
81 81
         $copiedFile = $this->appDir.$file.'.blade.php';
82 82
 
83
-        if (! file_exists($sourceFile)) {
83
+        if (!file_exists($sourceFile)) {
84 84
             return $this->error(
85 85
                 'Cannot find source '.$label.' at '
86 86
                 .$sourceFile.
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
             if ($canCopy) {
101 101
                 $path = pathinfo($copiedFile);
102 102
 
103
-                if (! file_exists($path['dirname'])) {
103
+                if (!file_exists($path['dirname'])) {
104 104
                     mkdir($path['dirname'], 0755, true);
105 105
                 }
106 106
 
Please login to merge, or discard this patch.