Skip to content

Commit

Permalink
docs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iGusev committed Jun 29, 2015
1 parent d3aa199 commit 3c06703
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Types/Message.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class Message extends BaseType implements TypeInterface
/**
* Conversation the message belongs to — user in case of a private message, GroupChat in case of a group
*
* @var \TelegramBot\Api\Types\User|\TelegramBot\Api\Types\GroupChat
* @var \TelegramBot\Api\TypeInterface
*/
protected $chat;

Expand Down Expand Up @@ -180,15 +180,15 @@ public function setAudio(Audio $audio)
}

/**
* @return GroupChat|User
* @return TypeInterface
*/
public function getChat()
{
return $this->chat;
}

/**
* @param GroupChat|User $chat
* @param TypeInterface $chat
*/
public function setChat(TypeInterface $chat)
{
Expand Down

0 comments on commit 3c06703

Please sign in to comment.