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

_isNextAllAnySome() private method

Checks whether the current lookahead token of the lexer has the type T_ALL, T_ANY or T_SOME.
private _isNextAllAnySome ( ) : boolean
return boolean
    private function _isNextAllAnySome()
    {
        return $this->_lexer->lookahead['type'] === Lexer::T_ALL ||
               $this->_lexer->lookahead['type'] === Lexer::T_ANY ||
               $this->_lexer->lookahead['type'] === Lexer::T_SOME;
    }
Parser