PATH:
home
/
lab2454c
/
.trash
/
core
/
app
/
Http
/
Controllers
/
Gateway
/
PaypalSdk
/
Core
<?php namespace App\Http\Controllers\Gateway\PaypalSdk\Core; use App\Http\Controllers\Gateway\PaypalSdk\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]