Lexer.php - CS fix
authorJoseph Bielawski <stloyd@gmail.com>
Fri, 29 Apr 2011 09:54:59 +0000 (02:54 -0700)
committerJoseph Bielawski <stloyd@gmail.com>
Fri, 29 Apr 2011 09:54:59 +0000 (02:54 -0700)
lib/Twig/Lexer.php

index 16dda51..b5bb824 100644 (file)
@@ -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();
         }
     }