mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-11 13:28:40 +00:00
28 lines
583 B
PHP
28 lines
583 B
PHP
<?php
|
|
|
|
namespace PayPal\Core;
|
|
|
|
/**
|
|
* Class PayPalConstants
|
|
* Placeholder for Paypal Constants
|
|
*
|
|
* @package PayPal\Core
|
|
*/
|
|
class PayPalConstants
|
|
{
|
|
|
|
const SDK_NAME = 'PayPal-PHP-SDK';
|
|
const SDK_VERSION = '1.14.0';
|
|
|
|
/**
|
|
* Approval URL for Payment
|
|
*/
|
|
const APPROVAL_URL = 'approval_url';
|
|
|
|
const REST_SANDBOX_ENDPOINT = "https://api.sandbox.paypal.com/";
|
|
const OPENID_REDIRECT_SANDBOX_URL = "https://www.sandbox.paypal.com";
|
|
|
|
const REST_LIVE_ENDPOINT = "https://api.paypal.com/";
|
|
const OPENID_REDIRECT_LIVE_URL = "https://www.paypal.com";
|
|
}
|