Braintree\PaymentMethodGateway::_doCreate PHP 메소드

_doCreate() 공개 메소드

sends the create request to the gateway
public _doCreate ( string $subPath, array $params ) : mixed
$subPath string
$params array
리턴 mixed
    public function _doCreate($subPath, $params)
    {
        $fullPath = $this->_config->merchantPath() . $subPath;
        $response = $this->_http->post($fullPath, $params);
        return $this->_verifyGatewayResponse($response);
    }