PhpCss\Parser::endOfTokens PHP Method

endOfTokens() protected method

Validate if the of the token stream is reached. The position parameter may be provided to look forward.
protected endOfTokens ( integer $position ) : boolean
$position integer
return boolean
    protected function endOfTokens($position = 0)
    {
        return count($this->_tokens) <= $position;
    }