2025-12-24 13:26:55 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Tests\E2E\Services\Realtime;
|
|
|
|
|
|
|
|
|
|
use Tests\E2E\Scopes\ProjectCustom;
|
|
|
|
|
use Tests\E2E\Scopes\Scope;
|
|
|
|
|
use Tests\E2E\Scopes\SideClient;
|
|
|
|
|
use Tests\E2E\Services\Functions\FunctionsBase;
|
|
|
|
|
|
|
|
|
|
class RealtimeCustomClientQueryTest extends Scope
|
|
|
|
|
{
|
|
|
|
|
use FunctionsBase;
|
|
|
|
|
use RealtimeBase;
|
|
|
|
|
use ProjectCustom;
|
|
|
|
|
use SideClient;
|
2026-04-02 12:05:55 +00:00
|
|
|
use RealtimeQueryBase;
|
2025-12-24 13:26:55 +00:00
|
|
|
|
2026-04-02 12:05:55 +00:00
|
|
|
protected function supportForCheckConnectionStatus(): bool
|
2025-12-24 13:26:55 +00:00
|
|
|
{
|
2026-04-02 12:05:55 +00:00
|
|
|
return true;
|
2026-02-09 06:25:39 +00:00
|
|
|
}
|
2025-12-24 13:26:55 +00:00
|
|
|
}
|