SqlParser\TokensList::offsetGet PHP Method

offsetGet() public method

Gets a value from the container.
public offsetGet ( integer $offset ) : Token
$offset integer The offset to be returned.
return Token
    public function offsetGet($offset)
    {
        return $offset < $this->count ? $this->tokens[$offset] : null;
    }