����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.17.81.40 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/./bofirmacademy.com/vendor/braintree/braintree_php/lib/Braintree/ |
Upload File : |
<?php namespace Braintree; /** * @property-read \Braintree\MerchantAccount\BusinessDetails $businessDetails * @property-read string $currencyIsoCode * @property-read boolean $default * @property-read \Braintree\MerchantAccount\FundingDetails $fundingDetails * @property-read string $id * @property-read \Braintree\MerchantAccount\IndividualDetails $individualDetails * @property-read \Braintree\MerchantAccount $masterMerchantAccount * @property-read string $status */ class MerchantAccount extends Base { const STATUS_ACTIVE = 'active'; const STATUS_PENDING = 'pending'; const STATUS_SUSPENDED = 'suspended'; const FUNDING_DESTINATION_BANK = 'bank'; const FUNDING_DESTINATION_EMAIL = 'email'; const FUNDING_DESTINATION_MOBILE_PHONE = 'mobile_phone'; public static function factory($attributes) { $instance = new self(); $instance->_initialize($attributes); return $instance; } protected function _initialize($merchantAccountAttribs) { $this->_attributes = $merchantAccountAttribs; if (isset($merchantAccountAttribs['individual'])) { $individual = $merchantAccountAttribs['individual']; $this->_set('individualDetails', MerchantAccount\IndividualDetails::Factory($individual)); } if (isset($merchantAccountAttribs['business'])) { $business = $merchantAccountAttribs['business']; $this->_set('businessDetails', MerchantAccount\BusinessDetails::Factory($business)); } if (isset($merchantAccountAttribs['funding'])) { $funding = $merchantAccountAttribs['funding']; $this->_set('fundingDetails', new MerchantAccount\FundingDetails($funding)); } if (isset($merchantAccountAttribs['masterMerchantAccount'])) { $masterMerchantAccount = $merchantAccountAttribs['masterMerchantAccount']; $this->_set('masterMerchantAccount', self::Factory($masterMerchantAccount)); } } // static methods redirecting to gateway public static function create($attribs) { return Configuration::gateway()->merchantAccount()->create($attribs); } public static function find($merchant_account_id) { return Configuration::gateway()->merchantAccount()->find($merchant_account_id); } public static function update($merchant_account_id, $attributes) { return Configuration::gateway()->merchantAccount()->update($merchant_account_id, $attributes); } }