1
0
Fork 0
mirror of synced 2024-06-26 18:20:43 +12:00
appwrite/src/Appwrite/Auth/OAuth2/TradeshiftBox.php
2022-05-12 17:56:20 +02:00

19 lines
289 B
PHP

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