You are here

private static function Braintree_Address::_doCreate in Commerce Braintree 7

sends the create request to the gateway @ignore

Parameters

string $url:

array $params:

Return value

mixed

1 call to Braintree_Address::_doCreate()
Braintree_Address::create in braintree_php/lib/Braintree/Address.php
@access public

File

braintree_php/lib/Braintree/Address.php, line 301

Class

Braintree_Address
Creates and manages Braintree Addresses

Code

private static function _doCreate($url, $params) {
  $response = Braintree_Http::post($url, $params);
  return self::_verifyGatewayResponse($response);
}