PATH:
home
/
lab2454c
/
vaultchip.com
/
vendor
/
paypal
/
paypal-checkout-sdk
/
lib
/
PayPalCheckoutSdk
/
Core
<?php namespace PayPalCheckoutSdk\Core; use PayPalHttp\HttpClient; class PayPalHttpClient extends HttpClient { private $refreshToken; public $authInjector; public function __construct(PayPalEnvironment $environment, $refreshToken = NULL) { parent::__construct($environment); $this->refreshToken = $refreshToken; $this->authInjector = new AuthorizationInjector($this, $environment, $refreshToken); $this->addInjector($this->authInjector); $this->addInjector(new GzipInjector()); $this->addInjector(new FPTIInstrumentationInjector()); } public function userAgent() { return UserAgent::getValue(); } }
[-] UserAgent.php
[edit]
[-] AccessTokenRequest.php
[edit]
[+]
..
[-] Version.php
[edit]
[-] AuthorizationInjector.php
[edit]
[-] AccessToken.php
[edit]
[-] PayPalHttpClient.php
[edit]
[-] RefreshTokenRequest.php
[edit]
[-] FPTIInstrumentationInjector.php
[edit]
[-] GzipInjector.php
[edit]
[-] ProductionEnvironment.php
[edit]
[-] SandboxEnvironment.php
[edit]
[-] PayPalEnvironment.php
[edit]