@@ -204,7 +204,7 @@ |
||
204 | 204 | |
205 | 205 | public function getRawContent($content = '') |
206 | 206 | { |
207 | - if($content) { |
|
207 | + if ($content) { |
|
208 | 208 | $this->content = $content; |
209 | 209 | } else { |
210 | 210 | $content = $this->content; |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | $input = file_get_contents('php://stdin'); |
3 | -spl_autoload_register(function ($class) { |
|
3 | +spl_autoload_register(function($class) { |
|
4 | 4 | if (is_file($file = __DIR__ . '/' . substr(strtr($class, '\\', '/'), 10) . '.php')) { |
5 | 5 | require $file; |
6 | 6 | return true; |
@@ -37,7 +37,7 @@ |
||
37 | 37 | |
38 | 38 | protected function convertUploadedFiles(array $files) |
39 | 39 | { |
40 | - return array_map(function ($file) { |
|
40 | + return array_map(function($file) { |
|
41 | 41 | if (is_null($file) || (is_array($file) && empty(array_filter($file)))) { |
42 | 42 | return $file; |
43 | 43 | } |
@@ -87,7 +87,7 @@ |
||
87 | 87 | } |
88 | 88 | |
89 | 89 | $this->kernel = $this->app->make(\Illuminate\Contracts\Http\Kernel::class); |
90 | - $virus = function () { |
|
90 | + $virus = function() { |
|
91 | 91 | // Insert bofore BootProviders |
92 | 92 | array_splice($this->bootstrappers, -1, 0, [\Illuminate\Foundation\Bootstrap\SetRequestForConsole::class]); |
93 | 93 | }; |