You are here

private static function Braintree_Customer::_doUpdate in Commerce Braintree 7

sends the update request to the gateway

@ignore

Parameters

string $url:

array $params:

Return value

mixed

2 calls to Braintree_Customer::_doUpdate()
Braintree_Customer::update in braintree_php/lib/Braintree/Customer.php
updates the customer record
Braintree_Customer::updateFromTransparentRedirect in braintree_php/lib/Braintree/Customer.php
update a customer from a TransparentRedirect operation

File

braintree_php/lib/Braintree/Customer.php, line 512

Class

Braintree_Customer
Creates and manages Customers

Code

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