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