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 — fix-save-actions ( 1e2da8 )
by Pedro
12:25
created
src/app/Console/Commands/PublishAssets.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,12 +41,12 @@
 block discarded – undo
41 41
     private function runConsoleCommand($command)
42 42
     {
43 43
         $process = new Process($command, null, null, null, 60, null);
44
-        $process->run(function ($type, $buffer) {
44
+        $process->run(function($type, $buffer) {
45 45
             $this->line($buffer);
46 46
         });
47 47
 
48 48
         // executes after the command finishes
49
-        if (! $process->isSuccessful()) {
49
+        if (!$process->isSuccessful()) {
50 50
             throw new ProcessFailedException($process);
51 51
         }
52 52
     }
Please login to merge, or discard this patch.