@@ -45,7 +45,7 @@ |
||
45 | 45 | |
46 | 46 | /** |
47 | 47 | * \brief Use this method to get a list of administrators in a chat. |
48 | - * @param string $chat_id Unique identifier for the target chat or username of the target supergroup or channel (in the format <code>@channelusername</code>) |
|
48 | + * @param string $_chat_id Unique identifier for the target chat or username of the target supergroup or channel (in the format <code>@channelusername</code>) |
|
49 | 49 | * @return Array|false On success, returns an Array of ChatMember objects that contains information about all chat administrators except other bots. If the chat is a group or a supergroup and no administrators were appointed, only the creator will be returned. |
50 | 50 | */ |
51 | 51 | public function getChatAdministrators($_chat_id) { |
@@ -379,7 +379,7 @@ |
||
379 | 379 | /** |
380 | 380 | * \brief Set current chat ID. |
381 | 381 | * \details Change the chat ID on which the bot acts. |
382 | - * @param $_chat_id The new chat ID to set. |
|
382 | + * @param string $_chat_id The new chat ID to set. |
|
383 | 383 | */ |
384 | 384 | public function setChatID($_chat_id) { |
385 | 385 |
@@ -82,7 +82,7 @@ |
||
82 | 82 | |
83 | 83 | // Exec getUpdates |
84 | 84 | $this->execRequest('getUpdates?' . http_build_query($parameters) |
85 | - . '&allowed_updates=' . json_encode($allowed_updates)); |
|
85 | + . '&allowed_updates=' . json_encode($allowed_updates)); |
|
86 | 86 | |
87 | 87 | } |
88 | 88 |