From 4a37844920b49c7755412af56314426b57021059 Mon Sep 17 00:00:00 2001 From: netkas Date: Tue, 4 Mar 2025 13:41:39 -0500 Subject: [PATCH] Add EncryptionChannelInstance class for managing encryption channel messages --- .../Client/EncryptionChannelInstance.php | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/Socialbox/Objects/Client/EncryptionChannelInstance.php diff --git a/src/Socialbox/Objects/Client/EncryptionChannelInstance.php b/src/Socialbox/Objects/Client/EncryptionChannelInstance.php new file mode 100644 index 0000000..7457dc1 --- /dev/null +++ b/src/Socialbox/Objects/Client/EncryptionChannelInstance.php @@ -0,0 +1,26 @@ +client = $client; + } + + public function sendMessage(string $message): void + { + $this->client->sendMessage($message); + } + } \ No newline at end of file