Skip to content

Commit c31be3e

Browse files
committed
upd MessageOriginChannel
1 parent 9c84a28 commit c31be3e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/Types/MessageOriginChannel.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,32 +24,32 @@ class MessageOriginChannel extends MessageOrigin
2424
protected $messageId;
2525
protected $authorSignature;
2626

27-
public function getChat()
27+
public function getChat(): ?Chat
2828
{
2929
return $this->chat;
3030
}
3131

32-
public function setChat($chat)
32+
public function setChat($chat): void
3333
{
3434
$this->chat = $chat;
3535
}
3636

37-
public function getMessageId()
37+
public function getMessageId(): ?int
3838
{
3939
return $this->messageId;
4040
}
4141

42-
public function setMessageId($messageId)
42+
public function setMessageId($messageId): void
4343
{
4444
$this->messageId = $messageId;
4545
}
4646

47-
public function getAuthorSignature()
47+
public function getAuthorSignature(): ?string
4848
{
4949
return $this->authorSignature;
5050
}
5151

52-
public function setAuthorSignature($authorSignature)
52+
public function setAuthorSignature($authorSignature): void
5353
{
5454
$this->authorSignature = $authorSignature;
5555
}

0 commit comments

Comments
 (0)