Braintree\CustomerGateway::updateNoValidate PHP Метод

updateNoValidate() публичный Метод

if calling this method in static context, customerId is the 2nd attribute. customerId is not sent in object context. returns a Customer object on success
public updateNoValidate ( string $customerId, array $attributes ) : Customer
$customerId string
$attributes array
Результат Customer
    public function updateNoValidate($customerId, $attributes)
    {
        $result = $this->update($customerId, $attributes);
        return Util::returnObjectOrThrowException(__CLASS__, $result);
    }