fixed CS on template output
authorFabien Potencier <fabien.potencier@gmail.com>
Wed, 27 Jul 2011 07:44:25 +0000 (09:44 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Wed, 27 Jul 2011 07:44:25 +0000 (09:44 +0200)
lib/Twig/Node/BlockReference.php

index 4df2ed8..d39a12c 100644 (file)
@@ -38,9 +38,9 @@ class Twig_Node_BlockReference extends Twig_Node implements Twig_NodeOutputInter
         if ($this->hasNode('name')) {
             $compiler
                 ->addDebugInfo($this)
-                ->raw("\$this->displayBlock(")
+                ->write("\$this->displayBlock(")
                 ->subcompile($this->getNode('name'))
-                ->write(", \$context, \$blocks);\n")
+                ->raw(", \$context, \$blocks);\n")
             ;
         } else {
             $compiler