public static function Braintree_Customer::createCustomerUrl in Commerce Braintree 7
@access public
Parameters
none:
Return value
string
2 calls to Braintree_Customer::createCustomerUrl()
- Braintree_CustomerTest::createCustomerViaTr in braintree_php/
tests/ integration/ CustomerTest.php - Braintree_TransparentRedirectTest::testParseAndValidateQueryString_throwsAuthenticationErrorIfBadCredentials in braintree_php/
tests/ integration/ TransparentRedirectTest.php
File
- braintree_php/
lib/ Braintree/ Customer.php, line 134
Class
- Braintree_Customer
- Creates and manages Customers
Code
public static function createCustomerUrl() {
trigger_error("DEPRECATED: Please use Braintree_TransparentRedirectRequest::url", E_USER_NOTICE);
return Braintree_Configuration::merchantUrl() . '/customers/all/create_via_transparent_redirect_request';
}