summaryrefslogtreecommitdiffstats
path: root/vendor/paypal/paypal-checkout-sdk/lib/PayPalCheckoutSdk/Core/AccessToken.php
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--vendor/paypal/paypal-checkout-sdk/lib/PayPalCheckoutSdk/Core/AccessToken.php48
1 files changed, 24 insertions, 24 deletions
diff --git a/vendor/paypal/paypal-checkout-sdk/lib/PayPalCheckoutSdk/Core/AccessToken.php b/vendor/paypal/paypal-checkout-sdk/lib/PayPalCheckoutSdk/Core/AccessToken.php
index b6f1d2d..521429a 100644
--- a/vendor/paypal/paypal-checkout-sdk/lib/PayPalCheckoutSdk/Core/AccessToken.php
+++ b/vendor/paypal/paypal-checkout-sdk/lib/PayPalCheckoutSdk/Core/AccessToken.php
@@ -1,25 +1,25 @@
-<?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;
- }
+<?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;
+ }
} \ No newline at end of file