Current Path : /var/www/alh/system/storage/vendor/braintree/braintree_php/lib/Braintree/ |
Current File : /var/www/alh/system/storage/vendor/braintree/braintree_php/lib/Braintree/Merchant.php |
<?php final class Braintree_Merchant extends Braintree_Base { protected function _initialize($attribs) { $this->_attributes = $attribs; } public static function factory($attributes) { $instance = new self(); $instance->_initialize($attributes); return $instance; } /** * returns a string representation of the merchant * @return string */ public function __toString() { return __CLASS__ . '[' . Braintree_Util::attributesToString($this->_attributes) .']'; } }