summaryrefslogtreecommitdiffstats
path: root/vendor/paypal/paypal-checkout-sdk/lib/PayPalCheckoutSdk/Core/AccessTokenRequest.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/paypal/paypal-checkout-sdk/lib/PayPalCheckoutSdk/Core/AccessTokenRequest.php')
-rw-r--r--vendor/paypal/paypal-checkout-sdk/lib/PayPalCheckoutSdk/Core/AccessTokenRequest.php54
1 files changed, 27 insertions, 27 deletions
diff --git a/vendor/paypal/paypal-checkout-sdk/lib/PayPalCheckoutSdk/Core/AccessTokenRequest.php b/vendor/paypal/paypal-checkout-sdk/lib/PayPalCheckoutSdk/Core/AccessTokenRequest.php
index 5c3e26e..9205aae 100644
--- a/vendor/paypal/paypal-checkout-sdk/lib/PayPalCheckoutSdk/Core/AccessTokenRequest.php
+++ b/vendor/paypal/paypal-checkout-sdk/lib/PayPalCheckoutSdk/Core/AccessTokenRequest.php
@@ -1,27 +1,27 @@
-<?php
-
-namespace PayPalCheckoutSdk\Core;
-
-use PayPalHttp\HttpRequest;
-
-class AccessTokenRequest extends HttpRequest
-{
- public function __construct(PayPalEnvironment $environment, $refreshToken = NULL)
- {
- parent::__construct("/v1/oauth2/token", "POST");
- $this->headers["Authorization"] = "Basic " . $environment->authorizationString();
- $body = [
- "grant_type" => "client_credentials"
- ];
-
- if (!is_null($refreshToken))
- {
- $body["grant_type"] = "refresh_token";
- $body["refresh_token"] = $refreshToken;
- }
-
- $this->body = $body;
- $this->headers["Content-Type"] = "application/x-www-form-urlencoded";
- }
-}
-
+<?php
+
+namespace PayPalCheckoutSdk\Core;
+
+use PayPalHttp\HttpRequest;
+
+class AccessTokenRequest extends HttpRequest
+{
+ public function __construct(PayPalEnvironment $environment, $refreshToken = NULL)
+ {
+ parent::__construct("/v1/oauth2/token", "POST");
+ $this->headers["Authorization"] = "Basic " . $environment->authorizationString();
+ $body = [
+ "grant_type" => "client_credentials"
+ ];
+
+ if (!is_null($refreshToken))
+ {
+ $body["grant_type"] = "refresh_token";
+ $body["refresh_token"] = $refreshToken;
+ }
+
+ $this->body = $body;
+ $this->headers["Content-Type"] = "application/x-www-form-urlencoded";
+ }
+}
+