. */ /** * ComparisonExpression = ComparisonOperator ( QuantifiedExpression | Expression | "(" Subselect ")" ) * * @package Doctrine * @subpackage Query * @author Janne Vanhala * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link http://www.phpdoctrine.org * @since 1.0 * @version $Revision$ */ class Doctrine_Query_Production_ComparisonExpression extends Doctrine_Query_Production { private function _isSubquery() { $lookahead = $this->_parser->lookahead; $next = $this->_parser->getScanner()->peek(); return $lookahead['value'] === '(' && $next['type'] === Doctrine_Query_Token::T_SELECT; } public function execute(array $params = array()) { $this->ComparisonOperator(); if ($this->_isSubquery()) { $this->_parser->match('('); $this->Subselect(); $this->_parser->match(')'); } else { switch ($this->_parser->lookahead['type']) { case Doctrine_Query_Token::T_ALL: case Doctrine_Query_Token::T_SOME: case Doctrine_Query_Token::T_NONE: $this->QuantifiedExpression(); break; default: $this->Expression(); } } } }