appwrite/src/Appwrite/Auth/OAuth2/TradeshiftBox.php

19 lines
282 B
PHP
Raw Normal View History

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