����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.148.231.72 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\Addon[] $addOns * @property-read string $id * @property-read int|null $billingDayOfMonth * @property-read int $billingFrequency * @property-read \DateTime $createdAt * @property-read string $currencyIsoCode * @property-read string|null $description * @property-read \Braintree\Discount[] $discounts * @property-read string $name * @property-read int|null $numberOfBillingCycles * @property-read string $price * @property-read int|null $trialDuration * @property-read string|null $trialDurationUnit * @property-read boolean $trialPeriod * @property-read \DateTime $updatedAt */ class Plan extends Base { public static function factory($attributes) { $instance = new self(); $instance->_initialize($attributes); return $instance; } protected function _initialize($attributes) { $this->_attributes = $attributes; $addOnArray = []; if (isset($attributes['addOns'])) { foreach ($attributes['addOns'] AS $addOn) { $addOnArray[] = AddOn::factory($addOn); } } $this->_attributes['addOns'] = $addOnArray; $discountArray = []; if (isset($attributes['discounts'])) { foreach ($attributes['discounts'] AS $discount) { $discountArray[] = Discount::factory($discount); } } $this->_attributes['discounts'] = $discountArray; $planArray = []; if (isset($attributes['plans'])) { foreach ($attributes['plans'] AS $plan) { $planArray[] = self::factory($plan); } } $this->_attributes['plans'] = $planArray; } // static methods redirecting to gateway public static function all() { return Configuration::gateway()->plan()->all(); } }