1
0
Fork 0
mirror of synced 2024-05-20 12:42:39 +12:00

Extending support for Paypal Sandbox

This commit is contained in:
Armino Popp 2020-07-06 16:33:45 +03:00
parent 7b1e698fd0
commit 8c6648af19
4 changed files with 28 additions and 1 deletions

View file

@ -113,6 +113,14 @@ return [ // Ordered by ABC.
'beta' => false,
'mock' => false
],
'paypal_sandbox' => [
'developers' => 'https://developer.paypal.com/docs/api/overview/',
'icon' => 'icon-paypal_sandbox',
'enabled' => true,
'form' => false,
'beta' => false,
'mock' => false
],
'salesforce' => [
'developers' => 'https://developer.salesforce.com/docs/',
'icon' => 'icon-salesforce',

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

View file

@ -22,7 +22,7 @@ class Paypal extends OAuth2
'live' => 'https://api.paypal.com/v1/',
];
private $environment = 'live';
protected $environment = 'live';
/**
* @var array

View file

@ -0,0 +1,19 @@
<?php
namespace Appwrite\Auth\OAuth2;
use Appwrite\Auth\OAuth2\Paypal;
class PaypalSandbox extends Paypal
{
protected environment = 'sandbox';
/**
* @return string
*/
public function getName(): string
{
return 'paypal_sandbox';
}
}