friendship ended with social-app. php is my new best friend
1<?php
2/**
3 * Class PayPalSandbox
4 *
5 * @created 29.07.2019
6 * @author smiley <smiley@chillerlan.net>
7 * @copyright 2019 smiley
8 * @license MIT
9 */
10declare(strict_types=1);
11
12namespace chillerlan\OAuth\Providers;
13
14/**
15 * PayPal OAuth2 (sandbox)
16 *
17 * @link https://developer.paypal.com/api/rest/
18 */
19class PayPalSandbox extends PayPal{
20
21 public const IDENTIFIER = 'PAYPALSANDBOX';
22
23 protected string $authorizationURL = 'https://www.sandbox.paypal.com/connect';
24 protected string $accessTokenURL = 'https://api.sandbox.paypal.com/v1/oauth2/token';
25 protected string $apiURL = 'https://api.sandbox.paypal.com';
26
27}