mirror of
https://github.com/appwrite/appwrite
synced 2026-04-26 07:57:22 +00:00
16 lines
254 B
PHP
16 lines
254 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Tests\E2E\Services\Tokens;
|
||
|
|
|
||
|
|
use Tests\E2E\Scopes\ProjectCustom;
|
||
|
|
use Tests\E2E\Scopes\Scope;
|
||
|
|
use Tests\E2E\Scopes\SideClient;
|
||
|
|
|
||
|
|
class TokensCustomClientTest extends Scope
|
||
|
|
{
|
||
|
|
use TokensBase;
|
||
|
|
use ProjectCustom;
|
||
|
|
use SideClient;
|
||
|
|
|
||
|
|
}
|