From c31be3ed4ec65c65b14c313802e6a7ed121b26ef Mon Sep 17 00:00:00 2001 From: Ilia Gusev Date: Sun, 30 Jun 2024 20:57:33 +0700 Subject: [PATCH] upd MessageOriginChannel --- src/Types/MessageOriginChannel.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Types/MessageOriginChannel.php b/src/Types/MessageOriginChannel.php index 3fc70104..2e78834f 100644 --- a/src/Types/MessageOriginChannel.php +++ b/src/Types/MessageOriginChannel.php @@ -24,32 +24,32 @@ class MessageOriginChannel extends MessageOrigin protected $messageId; protected $authorSignature; - public function getChat() + public function getChat(): ?Chat { return $this->chat; } - public function setChat($chat) + public function setChat($chat): void { $this->chat = $chat; } - public function getMessageId() + public function getMessageId(): ?int { return $this->messageId; } - public function setMessageId($messageId) + public function setMessageId($messageId): void { $this->messageId = $messageId; } - public function getAuthorSignature() + public function getAuthorSignature(): ?string { return $this->authorSignature; } - public function setAuthorSignature($authorSignature) + public function setAuthorSignature($authorSignature): void { $this->authorSignature = $authorSignature; }