1
0
Fork 0
mirror of synced 2024-05-20 12:42:39 +12:00
appwrite/src/Appwrite/Auth/OAuth2/PaypalSandbox.php
2020-07-07 10:14:24 +03:00

20 lines
275 B
PHP

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