Your IP : 216.73.217.95


Current Path : /home/rtorresani/www/vendor/braintree/braintree_php/lib/Braintree/
Upload File :
Current File : //home/rtorresani/www/vendor/braintree/braintree_php/lib/Braintree/EnrichedCustomerData.php

<?php

namespace Braintree;

/**
 * Braintree EnrichedCustomerData module
 */
class EnrichedCustomerData extends Base
{
    /**
     *  factory method: returns an instance of EnrichedCustomerData
     *  to the requesting method, with populated properties
     *
     * @param array $attributes used to create the object
     *
     * @return EnrichedCustomerData
     */
    public static function factory($attributes)
    {
        $instance = new self();
        $instance->_initialize($attributes);
        return $instance;
    }

    protected function _initialize($enrichedCustomerDataAttribs)
    {
        // set the attributes
        $this->_attributes = $enrichedCustomerDataAttribs;

        if (isset($enrichedCustomerDataAttribs['profileData'])) {
            $this->_set(
                'profileData',
                VenmoProfileData::factory(
                    $enrichedCustomerDataAttribs['profileData']
                )
            );
        }
    }

    // phpcs:ignore PEAR.Commenting.FunctionComment.Missing
    public function __toString()
    {
        return __CLASS__ . '[' .
                Util::attributesToString($this->_attributes) . ']';
    }
}