removed unneeded variable
authorFabien Potencier <fabien.potencier@gmail.com>
Mon, 2 Sep 2013 13:50:59 +0000 (15:50 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Mon, 2 Sep 2013 13:50:59 +0000 (15:50 +0200)
lib/Twig/Compiler.php

index 99aecbc..b80210b 100644 (file)
@@ -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);