mirror of
https://github.com/appwrite/appwrite
synced 2026-05-24 09:28:40 +00:00
17 lines
358 B
PHP
17 lines
358 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Tests\E2E\Services\Databases\Transactions;
|
||
|
|
|
||
|
|
use Tests\E2E\Scopes\ApiLegacy;
|
||
|
|
use Tests\E2E\Scopes\ProjectCustom;
|
||
|
|
use Tests\E2E\Scopes\Scope;
|
||
|
|
use Tests\E2E\Scopes\SideClient;
|
||
|
|
|
||
|
|
class LegacyTransactionPermissionsCustomClientTest extends Scope
|
||
|
|
{
|
||
|
|
use TransactionPermissionsBase;
|
||
|
|
use ProjectCustom;
|
||
|
|
use SideClient;
|
||
|
|
use ApiLegacy;
|
||
|
|
}
|