set('websockets.clients', [ [ 'name' => 'Test Client', 'app_id' => 1234, 'app_key' => 'TestKey', 'app_secret' => 'TestSecret' ] ]); } protected function getWebSocketConnection(string $url): Connection { $connection = new Connection(); $connection->httpRequest = new Request('GET', $url); return $connection; } }