Current Path : /var/test/www/storage2/vendor/braintree/braintree_php/lib/Braintree/ |
Current File : /var/test/www/storage2/vendor/braintree/braintree_php/lib/Braintree/MerchantGateway.php |
<?php final class Braintree_MerchantGateway { private $_gateway; private $_config; private $_http; public function __construct($gateway) { $this->_gateway = $gateway; $this->_config = $gateway->config; $this->_config->assertHasClientCredentials(); $this->_http = new Braintree_Http($gateway->config); $this->_http->useClientCredentials(); } public function create($attribs) { $response = $this->_http->post('/merchants/create_via_api', array('merchant' => $attribs)); return $this->_verifyGatewayResponse($response); } private function _verifyGatewayResponse($response) { if (isset($response['response']['merchant'])) { // return a populated instance of Braintree_merchant return new Braintree_Result_Successful(array( Braintree_Merchant::factory($response['response']['merchant']), Braintree_OAuthCredentials::factory($response['response']['credentials']), )); } else if (isset($response['apiErrorResponse'])) { return new Braintree_Result_Error($response['apiErrorResponse']); } else { throw new Braintree_Exception_Unexpected( "Expected merchant or apiErrorResponse" ); } } }