From: Joseph Bielawski Date: Fri, 29 Apr 2011 09:54:59 +0000 (-0700) Subject: Lexer.php - CS fix X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=c716b992785ccfc6c91098291159da31812fd4d0;p=konrad%2Ftwig.git Lexer.php - CS fix --- 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(); } }