1
0
Fork 0
mirror of synced 2024-09-30 01:08:13 +13:00
appwrite/src/Appwrite/Auth/OAuth2/PaypalSandbox.php

20 lines
274 B
PHP
Raw Normal View History

2020-07-07 01:33:45 +12:00
<?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';
2020-07-07 01:33:45 +12:00
}
}