From e307cfab06b36b55cbf4ab7b29c15b9248042c34 Mon Sep 17 00:00:00 2001 From: Joseph Bielawski Date: Fri, 29 Apr 2011 02:59:03 -0700 Subject: [PATCH] Compiler.php - CS fix --- lib/Twig/Compiler.php | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/lib/Twig/Compiler.php b/lib/Twig/Compiler.php index aef6a87..e103f4a 100644 --- a/lib/Twig/Compiler.php +++ b/lib/Twig/Compiler.php @@ -74,8 +74,7 @@ class Twig_Compiler implements Twig_CompilerInterface public function subcompile(Twig_NodeInterface $node, $raw = true) { - if (false === $raw) - { + if (false === $raw) { $this->addIndentation(); } -- 1.7.2.5