Skip to content

Commit

Permalink
upd MessageOriginChannel
Browse files Browse the repository at this point in the history
  • Loading branch information
iGusev committed Jun 30, 2024
1 parent 9c84a28 commit c31be3e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Types/MessageOriginChannel.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit c31be3e

Please sign in to comment.