Completed
Push — master ( 7a7c4e...586336 )
by Nate
11s
created
src/JsonParser.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,10 +33,10 @@
 block discarded – undo
33 33
     {
34 34
         foreach ($arr as $key => $value) {
35 35
             if ($value === null) {
36
-                $arr[$key] = '';
36
+                $arr[ $key ] = '';
37 37
             }
38 38
             if (is_array($value)) {
39
-                $arr[$key] = $this->filterNullValuesFromArray($value);
39
+                $arr[ $key ] = $this->filterNullValuesFromArray($value);
40 40
             }
41 41
         }
42 42
 
Please login to merge, or discard this patch.