1
0
Fork 0
mirror of synced 2024-06-29 11:40:45 +12:00
appwrite/src/Appwrite/Auth/OAuth2/PaypalSandbox.php

19 lines
281 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
{
2022-05-13 03:56:20 +12:00
protected string $environment = 'sandbox';
2020-07-07 01:33:45 +12:00
/**
* @return string
*/
public function getName(): string
{
return 'paypalSandbox';
2020-07-07 01:33:45 +12:00
}
}