From fa93043bf3900f097728d7a68fe4ee947cf01a76 Mon Sep 17 00:00:00 2001 From: Joseph Bielawski Date: Fri, 29 Apr 2011 02:56:34 -0700 Subject: [PATCH] Parser.php - CS fix --- lib/Twig/Parser.php | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/lib/Twig/Parser.php b/lib/Twig/Parser.php index be39535..c433ab6 100644 --- a/lib/Twig/Parser.php +++ b/lib/Twig/Parser.php @@ -295,8 +295,7 @@ class Twig_Parser implements Twig_ParserInterface protected function checkBodyNodes($body) { // check that the body does not contain non-empty output nodes - foreach ($body as $node) - { + foreach ($body as $node) { if ( ($node instanceof Twig_Node_Text && !ctype_space($node->getAttribute('data'))) || -- 1.7.2.5