From: Fabien Potencier Date: Mon, 2 Sep 2013 13:50:59 +0000 (+0200) Subject: removed unneeded variable X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=ffec8ba902d643b51b9a3e240bdc7a0ec0c44836;p=web%2Fkonrad%2Ftwig.git removed unneeded variable --- diff --git a/lib/Twig/Compiler.php b/lib/Twig/Compiler.php index 99aecbc..b80210b 100644 --- a/lib/Twig/Compiler.php +++ b/lib/Twig/Compiler.php @@ -180,11 +180,12 @@ class Twig_Compiler implements Twig_CompilerInterface $this->raw($value ? 'true' : 'false'); } elseif (is_array($value)) { $this->raw('array('); - $i = 0; + $first = true; foreach ($value as $key => $value) { - if ($i++) { + if (!$first) { $this->raw(', '); } + $first = false; $this->repr($key); $this->raw(' => '); $this->repr($value);