1
0
Fork 0
mirror of synced 2024-06-27 02:31:04 +12:00
appwrite/src/Appwrite/Auth/OAuth2/PaypalSandbox.php
2022-05-12 17:56:20 +02:00

19 lines
281 B
PHP

<?php
namespace Appwrite\Auth\OAuth2;
use Appwrite\Auth\OAuth2\Paypal;
class PaypalSandbox extends Paypal
{
protected string $environment = 'sandbox';
/**
* @return string
*/
public function getName(): string
{
return 'paypalSandbox';
}
}