Skip to content

Commit 59d0b61

Browse files
committed
up: update indent space for list data format
1 parent b57d62f commit 59d0b61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Util/FormatUtil.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ public static function arr2str(array $arr): string
259259
$val = is_scalar($val) ? (string)$val : JsonHelper::unescaped($val);
260260
}
261261

262-
$temp .= (!is_numeric($k) ? " $k: " : '') . "$val,\n";
262+
$temp .= (!is_numeric($k) ? " $k: " : ' ') . "$val,\n";
263263
}
264264

265265
$temp .= " ]";

0 commit comments

Comments
 (0)