Completed
Pull Request — master (#60)
by Kun
06:38
created
src/Response.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -204,7 +204,7 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/Entry.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/Illuminate/Request.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
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
             }
Please login to merge, or discard this patch.
src/Base.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
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
         };
Please login to merge, or discard this patch.