From f67a6a7f1cfea1da2faaaeae31709c89e6c9d78b Mon Sep 17 00:00:00 2001 From: Mohammad Hafijul Islam Date: Fri, 20 Sep 2024 02:37:57 +0600 Subject: [PATCH] unused php doc block removed --- src/Chat.php | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/Chat.php b/src/Chat.php index 70ea07e..f80dde6 100644 --- a/src/Chat.php +++ b/src/Chat.php @@ -8,25 +8,16 @@ class Chat { - /** - * @return ChatGroupService - */ public function chatGroup($filters = null) { return \singleton(ChatGroupService::class, $filters); } - /** - * @return ChatParticipantService - */ public function chatParticipant($filters = null) { return \singleton(ChatParticipantService::class, $filters); } - /** - * @return ChatMessageService - */ public function chatMessage($filters = null) { return \singleton(ChatMessageService::class, $filters);