_uriWithParams() protected static method

protected static _uriWithParams ( $uri, $params = null )
コード例 #1
0
 /**
  * Load another page of results into this pager.
  */
 protected function _loadFrom($uri, $params = null)
 {
     if (empty($uri)) {
         return;
     }
     $uri = Recurly_Base::_uriWithParams($uri, $params);
     $response = $this->_client->request(Recurly_Client::GET, $uri);
     $response->assertValidResponse();
     $this->_objects = array();
     $this->__parseXmlToUpdateObject($response->body);
     $this->_afterParseResponse($response, $uri);
 }