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 — crud-uploads ( f5e93a...469ece )
by Pedro
11:36
created
src/app/Library/Uploaders/SingleFile.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
         }
27 27
 
28 28
         foreach ($previousFiles as $row => $file) {
29
-            if ($file && ! isset($orderedFiles[$row])) {
29
+            if ($file && !isset($orderedFiles[$row])) {
30 30
                 $orderedFiles[$row] = null;
31 31
                 Storage::disk($this->getDisk())->delete($file);
32 32
             }
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
             return $this->getPath().$fileName;
53 53
         }
54 54
 
55
-        if (! $value && CrudPanelFacade::getRequest()->has($this->getName()) && $previousFile) {
55
+        if (!$value && CrudPanelFacade::getRequest()->has($this->getName()) && $previousFile) {
56 56
             Storage::disk($this->getDisk())->delete($previousFile);
57 57
 
58 58
             return null;
Please login to merge, or discard this patch.