mirror of
https://github.com/appwrite/appwrite
synced 2026-05-16 21:48:45 +00:00
15 lines
265 B
PHP
15 lines
265 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Tests\E2E\Services\Messaging;
|
||
|
|
|
||
|
|
use Tests\E2E\Scopes\ProjectCustom;
|
||
|
|
use Tests\E2E\Scopes\Scope;
|
||
|
|
use Tests\E2E\Scopes\SideConsole;
|
||
|
|
|
||
|
|
class MessagingConsoleClientTest extends Scope
|
||
|
|
{
|
||
|
|
use MessagingBase;
|
||
|
|
use ProjectCustom;
|
||
|
|
use SideConsole;
|
||
|
|
}
|