SqlParser\TokensList::offsetGet PHP 메소드

offsetGet() 공개 메소드

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