mirror of
https://github.com/appwrite/appwrite
synced 2026-05-14 20:48:45 +00:00
19 lines
282 B
PHP
19 lines
282 B
PHP
|
|
<?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';
|
||
|
|
}
|
||
|
|
}
|