Your IP : 216.73.216.95


Current Path : /var/www/alh/upload/system/storage/vendor/braintree/braintree_php/lib/Braintree/
Upload File :
Current File : /var/www/alh/upload/system/storage/vendor/braintree/braintree_php/lib/Braintree/Modification.php

<?php
class Braintree_Modification extends Braintree_Base
{
    protected function _initialize($attributes)
    {
        $this->_attributes = $attributes;
    }

    public static function factory($attributes)
    {
        $instance = new self();
        $instance->_initialize($attributes);
        return $instance;
    }

    public function __toString() {
        return get_called_class() . '[' . Braintree_Util::attributesToString($this->_attributes) . ']';
    }
}