This commit is contained in:
2020-04-02 01:20:02 -05:00
parent 1034822f35
commit 27e99bd091

View File

@@ -52,6 +52,8 @@ class MoonFormatter extends Command
$temp = str_replace('[', '', $data[$i]);
//Strip the ending ] from the line
$temp = str_replace(']', '', $temp);
//Remove the spacees from the line
$temp = str_replace(' ', '', $temp);
$lines[$i] = preg_split("/,/", $temp);
}