summaryrefslogtreecommitdiffstats
path: root/vendor/paypal/paypal-checkout-sdk/lib/PayPalCheckoutSdk/Core/RefreshTokenRequest.php
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--vendor/paypal/paypal-checkout-sdk/lib/PayPalCheckoutSdk/Core/RefreshTokenRequest.php38
1 files changed, 19 insertions, 19 deletions
diff --git a/vendor/paypal/paypal-checkout-sdk/lib/PayPalCheckoutSdk/Core/RefreshTokenRequest.php b/vendor/paypal/paypal-checkout-sdk/lib/PayPalCheckoutSdk/Core/RefreshTokenRequest.php
index c524ae9..d73458d 100644
--- a/vendor/paypal/paypal-checkout-sdk/lib/PayPalCheckoutSdk/Core/RefreshTokenRequest.php
+++ b/vendor/paypal/paypal-checkout-sdk/lib/PayPalCheckoutSdk/Core/RefreshTokenRequest.php
@@ -1,19 +1,19 @@
-<?php
-
-namespace PayPalCheckoutSdk\Core;
-
-use PayPalHttp\HttpRequest;
-
-class RefreshTokenRequest extends HttpRequest
-{
- public function __construct(PayPalEnvironment $environment, $authorizationCode)
- {
- parent::__construct("/v1/identity/openidconnect/tokenservice", "POST");
- $this->headers["Authorization"] = "Basic " . $environment->authorizationString();
- $this->headers["Content-Type"] = "application/x-www-form-urlencoded";
- $this->body = [
- "grant_type" => "authorization_code",
- "code" => $authorizationCode
- ];
- }
-}
+<?php
+
+namespace PayPalCheckoutSdk\Core;
+
+use PayPalHttp\HttpRequest;
+
+class RefreshTokenRequest extends HttpRequest
+{
+ public function __construct(PayPalEnvironment $environment, $authorizationCode)
+ {
+ parent::__construct("/v1/identity/openidconnect/tokenservice", "POST");
+ $this->headers["Authorization"] = "Basic " . $environment->authorizationString();
+ $this->headers["Content-Type"] = "application/x-www-form-urlencoded";
+ $this->body = [
+ "grant_type" => "authorization_code",
+ "code" => $authorizationCode
+ ];
+ }
+}