����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 18.119.0.35 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; /** * Braintree Gateway module * * @package Braintree * @category Resources */ class Gateway { /** * * @var Configuration */ public $config; /** * * @var GraphQLClient */ public $graphQLClient; public function __construct($config) { if (is_array($config)) { $config = new Configuration($config); } $this->config = $config; $this->graphQLClient = new GraphQLClient($config); } /** * * @return AddOnGateway */ public function addOn() { return new AddOnGateway($this); } /** * * @return AddressGateway */ public function address() { return new AddressGateway($this); } /** * * @return ApplePayGateway */ public function applePay() { return new ApplePayGateway($this); } /** * * @return ClientTokenGateway */ public function clientToken() { return new ClientTokenGateway($this); } /** * * @return CreditCardGateway */ public function creditCard() { return new CreditCardGateway($this); } /** * * @return CreditCardVerificationGateway */ public function creditCardVerification() { return new CreditCardVerificationGateway($this); } /** * * @return CustomerGateway */ public function customer() { return new CustomerGateway($this); } /** * * @return DiscountGateway */ public function discount() { return new DiscountGateway($this); } /** * * @return DisputeGateway */ public function dispute() { return new DisputeGateway($this); } /** * * @return DocumentUploadGateway */ public function documentUpload() { return new DocumentUploadGateway($this); } /** * * @return MerchantGateway */ public function merchant() { return new MerchantGateway($this); } /** * * @return MerchantAccountGateway */ public function merchantAccount() { return new MerchantAccountGateway($this); } /** * * @return OAuthGateway */ public function oauth() { return new OAuthGateway($this); } /** * * @return PaymentMethodGateway */ public function paymentMethod() { return new PaymentMethodGateway($this); } /** * * @return PaymentMethodNonceGateway */ public function paymentMethodNonce() { return new PaymentMethodNonceGateway($this); } /** * * @return PayPalAccountGateway */ public function payPalAccount() { return new PayPalAccountGateway($this); } /** * * @return PlanGateway */ public function plan() { return new PlanGateway($this); } /** * * @return SettlementBatchSummaryGateway */ public function settlementBatchSummary() { return new SettlementBatchSummaryGateway($this); } /** * * @return SubscriptionGateway */ public function subscription() { return new SubscriptionGateway($this); } /** * * @return TestingGateway */ public function testing() { return new TestingGateway($this); } /** * * @return TransactionGateway */ public function transaction() { return new TransactionGateway($this); } /** * * @return TransactionLineItemGateway */ public function transactionLineItem() { return new TransactionLineItemGateway($this); } /** * * @return UsBankAccountGateway */ public function usBankAccount() { return new UsBankAccountGateway($this); } /** * * @return UsBankAccountVerificationGateway */ public function usBankAccountVerification() { return new UsBankAccountVerificationGateway($this); } /** * * @return WebhookNotificationGateway */ public function webhookNotification() { return new WebhookNotificationGateway($this); } /** * * @return WebhookTestingGateway */ public function webhookTesting() { return new WebhookTestingGateway($this); } }