From 3ca7538977bd08fa7583a4a7b275380e9e3bfad6 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 1 Apr 2018 18:54:28 +0200 Subject: [PATCH] Improve array parser cs --- Utils/Parser/Php/ArrayParser.php | 1 - 1 file changed, 1 deletion(-) diff --git a/Utils/Parser/Php/ArrayParser.php b/Utils/Parser/Php/ArrayParser.php index ab30a8094..f09c877c3 100644 --- a/Utils/Parser/Php/ArrayParser.php +++ b/Utils/Parser/Php/ArrayParser.php @@ -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) . ']';