Improve array parser cs

This commit is contained in:
Dennis Eichhorn 2018-04-01 18:54:28 +02:00
parent 592bd52667
commit 3ca7538977

View File

@ -46,7 +46,6 @@ class ArrayParser
}
$stringify .= str_repeat(' ', $depth * 4) . $key . ' => ' . self::parseVariable($val, $depth + 1) . ',' . "\n";
}
return $stringify . str_repeat(' ', ($depth - 1) * 4) . ']';