PATH:
home
/
lab2454c
/
vaultchip.com
/
vendor
/
paypal
/
paypal-checkout-sdk
/
lib
/
PayPalCheckoutSdk
/
Core
<?php namespace PayPalCheckoutSdk\Core; class AccessToken { public $token; public $tokenType; public $expiresIn; private $createDate; public function __construct($token, $tokenType, $expiresIn) { $this->token = $token; $this->tokenType = $tokenType; $this->expiresIn = $expiresIn; $this->createDate = time(); } public function isExpired() { return time() >= $this->createDate + $this->expiresIn; } }
[-] 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]