From 2f3dd84890454eb96961b3078e3de86cd524e873 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 12 Jul 2011 09:50:37 +0200 Subject: [PATCH] fixed CS --- lib/Twig/Node/Expression/GetAttr.php | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/lib/Twig/Node/Expression/GetAttr.php b/lib/Twig/Node/Expression/GetAttr.php index fcf50f6..eb9e605 100644 --- a/lib/Twig/Node/Expression/GetAttr.php +++ b/lib/Twig/Node/Expression/GetAttr.php @@ -20,9 +20,7 @@ class Twig_Node_Expression_GetAttr extends Twig_Node_Expression { $compiler->raw('$this->getAttribute('); - if ($this->hasAttribute('is_defined_test') - && $compiler->getEnvironment()->isStrictVariables() - ) { + if ($this->hasAttribute('is_defined_test') && $compiler->getEnvironment()->isStrictVariables()) { $compiler->subcompile(new Twig_Node_Expression_Filter( $this->getNode('node'), new Twig_Node_Expression_Constant('default', $this->getLine()), -- 1.7.2.5