mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
286e0e5802
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
20 lines
481 B
PHP
20 lines
481 B
PHP
<?php
|
|
|
|
namespace Tests\E2E\Services\TablesDB\Transactions;
|
|
|
|
use Tests\E2E\Scopes\ApiTablesDB;
|
|
use Tests\E2E\Scopes\ProjectCustom;
|
|
use Tests\E2E\Scopes\Scope;
|
|
use Tests\E2E\Scopes\SideConsole;
|
|
use Tests\E2E\Services\Databases\Transactions\TransactionsBase;
|
|
use Tests\E2E\Traits\DatabasesUrlHelpers;
|
|
|
|
class TablesDBTransactionsConsoleClientTest extends Scope
|
|
{
|
|
use TransactionsBase;
|
|
use DatabasesUrlHelpers;
|
|
use ProjectCustom;
|
|
use SideConsole;
|
|
use ApiTablesDB;
|
|
}
|