From 84b31714a66f72c6f9857b8c806980007bfec3fb Mon Sep 17 00:00:00 2001 From: "Fabio B. Silva" Date: Mon, 12 Mar 2012 22:07:43 -0300 Subject: [PATCH] fix indentation --- lib/Doctrine/ORM/Query/Parser.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Doctrine/ORM/Query/Parser.php b/lib/Doctrine/ORM/Query/Parser.php index b7b105d82..bbb91c040 100644 --- a/lib/Doctrine/ORM/Query/Parser.php +++ b/lib/Doctrine/ORM/Query/Parser.php @@ -2191,10 +2191,10 @@ class Parser if (in_array($peek['value'], array("=", "<", "<=", "<>", ">", ">=", "!=")) || in_array($peek['type'], array(Lexer::T_NOT, Lexer::T_BETWEEN, Lexer::T_LIKE, Lexer::T_IN, Lexer::T_IS, Lexer::T_EXISTS)) || $this->_isMathOperator($peek)) { - $condPrimary->simpleConditionalExpression = $this->SimpleConditionalExpression(); + $condPrimary->simpleConditionalExpression = $this->SimpleConditionalExpression(); - return $condPrimary; - } + return $condPrimary; + } $this->match(Lexer::T_OPEN_PARENTHESIS); $condPrimary->conditionalExpression = $this->ConditionalExpression();