����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 18.216.130.198 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/omnipay/braintree/src/ |
Upload File : |
<?php namespace Omnipay\Braintree; use Omnipay\Common\Helper; use Symfony\Component\HttpFoundation\ParameterBag; /** * Data for an individual, used to create a MerchantAccount. * * The following parameters can be set: * * city * dbaName * email * legalName * postCode * state * streetAddress * taxId */ class MerchantBusiness { /** * Internal storage of all of the individual parameters. * * @var \Symfony\Component\HttpFoundation\ParameterBag */ protected $parameters; /** * Create a new MerchantIndividual object using the specified parameters * * @param array $parameters An array of parameters to set on the new object */ public function __construct($parameters = null) { $this->initialize($parameters); } /** * @return mixed */ public function getAddress1() { return $this->getParameter('address1'); } /** * @param mixed $streetAddress * @return $this */ public function setAddress1($streetAddress) { $this->setParameter('address1', $streetAddress); return $this; } /** * @return mixed */ public function getCity() { return $this->getParameter('city'); } /** * @param string $city * @return $this */ public function setCity($city) { $this->setParameter('city', $city); return $this; } /** * @return mixed */ public function getDbaName() { return $this->getParameter('dbaName'); } /** * @param string $dbaName * @return $this */ public function setDbaName($dbaName) { $this->setParameter('dbaName', $dbaName); return $this; } /** * @return mixed */ public function getEmail() { return $this->getParameter('email'); } /** * @param mixed $email * @return $this */ public function setEmail($email) { $this->setParameter('email', $email); return $this; } /** * @return mixed */ public function getLegalName() { return $this->getParameter('legalName'); } /** * @param string $legalName * @return $this */ public function setLegalName($legalName) { $this->setParameter('legalName', $legalName); return $this; } /** * Initialize the object with parameters. * * If any unknown parameters passed, they will be ignored. * * @param array $parameters An associative array of parameters * @return CreditCard provides a fluent interface. */ public function initialize($parameters = null) { $this->parameters = new ParameterBag(); Helper::initialize($this, $parameters); return $this; } /** * Get all parameters. * * @return array An associative array of parameters. */ public function getParameters() { return $this->parameters->all(); } /** * @return mixed */ public function getPhone() { return $this->getParameter('phone'); } /** * @param mixed $phone * @return $this */ public function setPhone($phone) { $this->setParameter('phone', $phone); return $this; } /** * @return mixed */ public function getPostCode() { return $this->getParameter('postCode'); } /** * @param mixed $postCode * @return $this */ public function setPostCode($postCode) { $this->setParameter('postCode', $postCode); return $this; } /** * @return mixed */ public function getState() { return $this->getParameter('state'); } /** * @param string $state * @return $this */ public function setState($state) { $this->setParameter('state', $state); return $this; } /** * @return mixed */ public function getTaxId() { return $this->getParameter('taxId'); } /** * @param string $taxId * @return $this */ public function setTaxId($taxId) { $this->setParameter('taxId', $taxId); return $this; } /** * Get one parameter. * * @return mixed A single parameter value. */ protected function getParameter($key) { return $this->parameters->get($key); } /** * Set one parameter. * * @param string $key Parameter key * @param mixed $value Parameter value * @return CreditCard provides a fluent interface. */ protected function setParameter($key, $value) { $this->parameters->set($key, $value); return $this; } }