Recurly_Transaction::uri PHP 메소드

uri() 보호된 메소드

protected uri ( )
    protected function uri()
    {
        if (!empty($this->_href)) {
            return $this->getHref();
        } else {
            if (!empty($this->uuid)) {
                return Recurly_Transaction::uriForTransaction($this->uuid);
            } else {
                throw new Recurly_Error('"uuid" is not supplied');
            }
        }
    }