We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -41,12 +41,12 @@ |
||
| 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 | } |