Doctrine\ORM\Query\Parser::_isNextAllAnySome PHP 메소드

_isNextAllAnySome() 개인적인 메소드

Checks whether the current lookahead token of the lexer has the type T_ALL, T_ANY or T_SOME.
private _isNextAllAnySome ( ) : boolean
리턴 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