We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | private function runConsoleCommand($command) |
50 | 50 | { |
51 | 51 | $process = new Process($command, null, null, null, 60, null); |
52 | - $process->run(function ($type, $buffer) { |
|
52 | + $process->run(function($type, $buffer) { |
|
53 | 53 | if (Process::ERR === $type) { |
54 | 54 | $this->line($buffer); |
55 | 55 | } else { |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | }); |
59 | 59 | |
60 | 60 | // executes after the command finishes |
61 | - if (! $process->isSuccessful()) { |
|
61 | + if (!$process->isSuccessful()) { |
|
62 | 62 | throw new ProcessFailedException($process); |
63 | 63 | } |
64 | 64 | } |