_save($options); } /** * @param array|string|null $options * * @return Dispute The closed dispute. */ public function close($options = null) { $url = $this->instanceUrl() . '/close'; list($response, $opts) = $this->_request('post', $url, null, $options); $this->refreshFrom($response, $opts); return $this; } }