芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/rentandbuyrealty.com/assets/sources/stripe/Transfer.php
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); } }