From c716b992785ccfc6c91098291159da31812fd4d0 Mon Sep 17 00:00:00 2001 From: Joseph Bielawski Date: Fri, 29 Apr 2011 02:54:59 -0700 Subject: [PATCH] Lexer.php - CS fix --- lib/Twig/Lexer.php | 6 ++---- 1 files changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/Twig/Lexer.php b/lib/Twig/Lexer.php index 16dda51..b5bb824 100644 --- a/lib/Twig/Lexer.php +++ b/lib/Twig/Lexer.php @@ -184,8 +184,7 @@ class Twig_Lexer implements Twig_LexerInterface $this->pushToken(Twig_Token::BLOCK_END_TYPE); $this->moveCursor($match[0]); $this->state = self::STATE_DATA; - } - else { + } else { $this->lexExpression(); } } @@ -199,8 +198,7 @@ class Twig_Lexer implements Twig_LexerInterface $this->pushToken(Twig_Token::VAR_END_TYPE); $this->moveCursor($match[0]); $this->state = self::STATE_DATA; - } - else { + } else { $this->lexExpression(); } } -- 1.7.2.5