Completed
Push — master ( 8cfeb9...1b1a3a )
by Danilo
02:16
created
src/Core/Chat.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
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) {
Please login to merge, or discard this patch.
src/Core/CoreBot.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -379,7 +379,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Core/Updates.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.