diff options
author | Anton Luka Šijanec <anton@sijanec.eu> | 2024-05-27 13:08:29 +0200 |
---|---|---|
committer | Anton Luka Šijanec <anton@sijanec.eu> | 2024-05-27 13:08:29 +0200 |
commit | 75160b12821f7f4299cce7f0b69c83c1502ae071 (patch) | |
tree | 27e25e4ccaef45f0c58b22831164050d1af1d4db /vendor/paypal/paypal-checkout-sdk/samples/PayPalClient.php | |
parent | prvi-commit (diff) | |
download | 1ka-75160b12821f7f4299cce7f0b69c83c1502ae071.tar 1ka-75160b12821f7f4299cce7f0b69c83c1502ae071.tar.gz 1ka-75160b12821f7f4299cce7f0b69c83c1502ae071.tar.bz2 1ka-75160b12821f7f4299cce7f0b69c83c1502ae071.tar.lz 1ka-75160b12821f7f4299cce7f0b69c83c1502ae071.tar.xz 1ka-75160b12821f7f4299cce7f0b69c83c1502ae071.tar.zst 1ka-75160b12821f7f4299cce7f0b69c83c1502ae071.zip |
Diffstat (limited to '')
-rw-r--r-- | vendor/paypal/paypal-checkout-sdk/samples/PayPalClient.php | 70 |
1 files changed, 35 insertions, 35 deletions
diff --git a/vendor/paypal/paypal-checkout-sdk/samples/PayPalClient.php b/vendor/paypal/paypal-checkout-sdk/samples/PayPalClient.php index 397b8d2..c0bfebf 100644 --- a/vendor/paypal/paypal-checkout-sdk/samples/PayPalClient.php +++ b/vendor/paypal/paypal-checkout-sdk/samples/PayPalClient.php @@ -1,35 +1,35 @@ -<?php - -namespace Sample; - -use PayPalCheckoutSdk\Core\PayPalHttpClient; -use PayPalCheckoutSdk\Core\SandboxEnvironment; - -ini_set('error_reporting', E_ALL); // or error_reporting(E_ALL); -ini_set('display_errors', '1'); -ini_set('display_startup_errors', '1'); - -class PayPalClient -{ - /** - * Returns PayPal HTTP client instance with environment which has access - * credentials context. This can be used invoke PayPal API's provided the - * credentials have the access to do so. - */ - public static function client() - { - return new PayPalHttpClient(self::environment()); - } - - /** - * Setting up and Returns PayPal SDK environment with PayPal Access credentials. - * For demo purpose, we are using SandboxEnvironment. In production this will be - * ProductionEnvironment. - */ - public static function environment() - { - $clientId = getenv("CLIENT_ID") ?: "<<PAYPAL-CLIENT-ID>>"; - $clientSecret = getenv("CLIENT_SECRET") ?: "<<PAYPAL-CLIENT-SECRET>>"; - return new SandboxEnvironment($clientId, $clientSecret); - } -} +<?php
+
+namespace Sample;
+
+use PayPalCheckoutSdk\Core\PayPalHttpClient;
+use PayPalCheckoutSdk\Core\SandboxEnvironment;
+
+ini_set('error_reporting', E_ALL); // or error_reporting(E_ALL);
+ini_set('display_errors', '1');
+ini_set('display_startup_errors', '1');
+
+class PayPalClient
+{
+ /**
+ * Returns PayPal HTTP client instance with environment which has access
+ * credentials context. This can be used invoke PayPal API's provided the
+ * credentials have the access to do so.
+ */
+ public static function client()
+ {
+ return new PayPalHttpClient(self::environment());
+ }
+
+ /**
+ * Setting up and Returns PayPal SDK environment with PayPal Access credentials.
+ * For demo purpose, we are using SandboxEnvironment. In production this will be
+ * ProductionEnvironment.
+ */
+ public static function environment()
+ {
+ $clientId = getenv("CLIENT_ID") ?: "<<PAYPAL-CLIENT-ID>>";
+ $clientSecret = getenv("CLIENT_SECRET") ?: "<<PAYPAL-CLIENT-SECRET>>";
+ return new SandboxEnvironment($clientId, $clientSecret);
+ }
+}
|