instanceUrl() . '/reversals'; list($response, $opts) = $this->_request('post', $url, $params, $opts); $this->refreshFrom($response, $opts); return $this; } /** * @return Transfer The canceled transfer. */ public function cancel() { $url = $this->instanceUrl() . '/cancel'; list($response, $opts) = $this->_request('post', $url); $this->refreshFrom($response, $opts); return $this; } /** * @param array|string|null $opts * * @return Transfer The saved transfer. */ public function save($opts = null) { return $this->_save($opts); } }