We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | $createUploadDirectoryCommand = 'mkdir -p public/uploads'; |
89 | 89 | break; |
90 | 90 | case '\\': // windows |
91 | - if (! file_exists('public\uploads')) { |
|
91 | + if (!file_exists('public\uploads')) { |
|
92 | 92 | $createUploadDirectoryCommand = 'mkdir public\uploads'; |
93 | 93 | } |
94 | 94 | break; |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | $this->echo('info', $beforeNotice ? ' '.$beforeNotice : $command); |
134 | 134 | |
135 | 135 | $process = new Process($command, null, null, null, $this->option('timeout')); |
136 | - $process->run(function ($type, $buffer) { |
|
136 | + $process->run(function($type, $buffer) { |
|
137 | 137 | if (Process::ERR === $type) { |
138 | 138 | $this->echo('comment', $buffer); |
139 | 139 | } else { |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | }); |
143 | 143 | |
144 | 144 | // executes after the command finishes |
145 | - if (! $process->isSuccessful()) { |
|
145 | + if (!$process->isSuccessful()) { |
|
146 | 146 | throw new ProcessFailedException($process); |
147 | 147 | } |
148 | 148 |