Passed
Pull Request — master (#46)
by Arman
02:33
created
src/Http/Request/Params.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
             if (strpos($block, 'filename') !== false) {
173 173
                 list($nameParam, $file) = self::getParsedFile($block);
174 174
 
175
-                if(!$file) {
175
+                if (!$file) {
176 176
                     continue;
177 177
                 }
178 178
 
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
     {
225 225
         list($name, $filename, $type, $content) = self::parseFileData($block);
226 226
 
227
-        if(!$content) {
227
+        if (!$content) {
228 228
             return null;
229 229
         }
230 230
 
@@ -242,7 +242,7 @@  discard block
 block discarded – undo
242 242
             'size' => $fs->size($tempName),
243 243
         ]);
244 244
 
245
-        register_shutdown_function(function () use ($fs, $tempName) {
245
+        register_shutdown_function(function() use ($fs, $tempName) {
246 246
             $fs->remove($tempName);
247 247
         });
248 248
 
Please login to merge, or discard this patch.