Passed
Push — master ( a18919...9a039e )
by 世昌
01:53
created
nebula/arrayobject/ArrayDump.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,11 +40,11 @@
 block discarded – undo
40 40
         $exstr = '';
41 41
         foreach ($array as $key => $value) {
42 42
             $line = '';
43
-            $current=$arrname."['".addslashes($key)."']";
43
+            $current = $arrname."['".addslashes($key)."']";
44 44
             if (is_array($value)) {
45 45
                 $line .= self::parserArraySub($current, $value);
46 46
             } else {
47
-                $line =  $current;
47
+                $line = $current;
48 48
                 if (is_string($value)) {
49 49
                     $line .= "='".addslashes($value).'\';'.PHP_EOL;
50 50
                 } elseif (is_bool($value)) {
Please login to merge, or discard this patch.