Doctrine\ORM\Query\Parser::WhereClause PHP Method

WhereClause() public method

WhereClause ::= "WHERE" ConditionalExpression
public WhereClause ( ) : Doctrine\ORM\Query\AST\WhereClause
return Doctrine\ORM\Query\AST\WhereClause
    public function WhereClause()
    {
        $this->match(Lexer::T_WHERE);

        return new AST\WhereClause($this->ConditionalExpression());
    }
Parser