projects
/
web/konrad/twig.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
68a3915
)
Lexer.php - CS fix
author
Joseph Bielawski
<stloyd@gmail.com>
Fri, 29 Apr 2011 09:54:59 +0000 (
02:54
-0700)
committer
Joseph Bielawski
<stloyd@gmail.com>
Fri, 29 Apr 2011 09:54:59 +0000 (
02:54
-0700)
lib/Twig/Lexer.php
patch
|
blob
|
history
diff --git
a/lib/Twig/Lexer.php
b/lib/Twig/Lexer.php
index
16dda51
..
b5bb824
100644
(file)
--- 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();
}
}