__parseResponseToNewObject() protected static method

Use a valid Recurly_Response to populate a new object.
protected static __parseResponseToNewObject ( $response, $uri, $client )
コード例 #1
0
ファイル: base.php プロジェクト: recurly/recurly-client-php
 /**
  * Delete the URI, validate the response and return the object.
  * @param string Resource URI, if not fully qualified, the base URL will be appended
  * @param string Optional client for the request, useful for mocking the client
  */
 protected static function _delete($uri, $client = null)
 {
     if (is_null($client)) {
         $client = new Recurly_Client();
     }
     $response = $client->request(Recurly_Client::DELETE, $uri);
     $response->assertValidResponse();
     if ($response->body) {
         return Recurly_Base::__parseResponseToNewObject($response, $uri, $client);
     }
     return null;
 }