instanceUrl() . '/loa_template'; list($response, $opts) = $this->_request('get', $url, $params, $options); $this->refreshFrom($response, $opts); return $this; } /** * Confirms the porting order is ready to be actioned * * @param array|null $params * @param array|string|null $options * * @return */ public function confirm($params = null, $options = null) { $url = $this->instanceUrl() . '/actions/confirm'; list($response, $opts) = $this->_request('post', $url, $params, $options); $this->refreshFrom($response, $opts); return $this; } }