1
0
Fork 0
mirror of synced 2024-06-28 03:01:15 +12:00

Merge branch 'master' of github.com:appwrite/appwrite into swoole

This commit is contained in:
Eldad Fux 2020-07-06 22:37:12 +03:00
commit ccf380698c
5 changed files with 28 additions and 1 deletions

View file

@ -113,6 +113,14 @@ return [ // Ordered by ABC.
'beta' => false,
'mock' => false
],
'paypalSandbox' => [
'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

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 'paypalSandbox';
}
}