Passed
Branch develop (4360e0)
by compolom
06:11
created
src/Upload.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Compolomus\BinaryFileStorage;
4 4
 
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
             foreach ($file as $key => $value) {
53 53
                 !is_array($value)
54 54
                     ? $result[$fieldName][$key] = $value
55
-                    : array_walk($value, function ($v, $k) use (&$result, $key) {
55
+                    : array_walk($value, function($v, $k) use (&$result, $key) {
56 56
                     $result[$k][$key] = $v;
57 57
                 });
58 58
             }
Please login to merge, or discard this patch.