Completed
Push — master ( 173116...5fbbd7 )
by
unknown
06:02 queued 03:48
created
src/Entities/InlineQueryResults.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
      * @param $reply_markup Inline keyboard object (Not JSON serialized, use getArray from InlineKeyboard class).
41 41
      * @param $parse_mode <i>Optional</i>. Formattation of the message.
42 42
      * @param $disable_web_preview <i>Optional</i>. Disables link previews for links in the sent message
43
-     * @return Id the the article added
43
+     * @return integer the the article added
44 44
      */
45 45
     public function newArticle($title, $message_text, $description = '', array $reply_markup = null, $parse_mode = 'HTML', $disable_web_preview = false) {
46 46
 
Please login to merge, or discard this patch.
src/Utilities/BotState.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
      * \brief Get current user status from redis and set it in status variable.
89 89
      * \details Throw exception if redis connection is missing.
90 90
      * @param $default_status <i>Optional</i>. The default status to return in case there is no status for the current user.
91
-     * @return The status for the current user, $default_status if missing.
91
+     * @return integer status for the current user, $default_status if missing.
92 92
      */
93 93
     public function getStatus(int $default_status = -1) : int {
94 94
 
Please login to merge, or discard this patch.
src/Commands/CallbackCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     /**
36 36
      * \brief (<i>Internal</i>) Process the callback query and check if it triggers a command of this type.
37 37
      * @param $callback_query Callback query to process.
38
-     * @return True if the callback query triggered a command.
38
+     * @return boolean if the callback query triggered a command.
39 39
      */
40 40
     protected function processCallbackCommand(array $callback_query) : bool {
41 41
 
Please login to merge, or discard this patch.
src/Commands/MessageCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
     /**
38 38
      * \brief (<i>Internal</i>)Process a message checking if it trigger any MessageCommand.
39 39
      * @param $message Message to process.
40
-     * @return True if the message triggered any command.
40
+     * @return boolean if the message triggered any command.
41 41
      */
42 42
     protected function processMessageCommand(array $message) : bool {
43 43
 
Please login to merge, or discard this patch.
src/Commands/MessageRegexCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
     /**
37 37
      * \brief (<i>Internal</i>) Process the message to check if it triggers a command of this type.
38 38
      * @param $message Message to process.
39
-     * @return True if the message triggered a command.
39
+     * @return boolean if the message triggered a command.
40 40
      */
41 41
     protected function processMessageRegexCommand(array $message) : bool {
42 42
 
Please login to merge, or discard this patch.
src/Core/BaseBot.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@
 block discarded – undo
148 148
      * \brief Dispatch each update to the right method (processMessage, processCallbackQuery, etc).
149 149
      * \details Set $chat_id for each update, $text, $data and $query are set for each update that contains them.
150 150
      * @param $update Reference to the update received.
151
-     * @return The id of the update processed.
151
+     * @return integer id of the update processed.
152 152
      */
153 153
     protected function processUpdate(array $update) : int {
154 154
 
Please login to merge, or discard this patch.
src/Database/LongPolling.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
      * \brief (<i>Internal</i>)Get first update offset in redis.
15 15
      * \details Called by getUpdatesRedis to get the offset saved in redis or to get it from telegram and save it in redis.
16 16
      * @param $offset_key Name of the variable where the offset is saved on Redis
17
-     * @return Id of the first update to process.
17
+     * @return integer of the first update to process.
18 18
      */
19 19
     protected function getUpdateOffsetRedis(string $offset_key) : int {
20 20
 
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
      * \details Called by getUpdatesDatabase to get the offset saved in database or to get it from telegram and save it in database.
103 103
      * @param $table_name Name of the table where offset is saved in the database
104 104
      * @param $column_name Name of the column where the offset is saved in the database
105
-     * @return Id of the first update to process.
105
+     * @return integer of the first update to process.
106 106
      */
107 107
     protected function getUpdateOffsetDatabase(string $table_name, string $column_name) : int {
108 108
 
Please login to merge, or discard this patch.
src/Localization/File.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      * \brief Load a localization file into the localized strings array.
34 34
      * @param $lang Language to load.
35 35
      * @param $dir Directory in which there are the JSON files.
36
-     * @return True if loaded. False if already loaded.
36
+     * @return boolean if loaded. False if already loaded.
37 37
      */
38 38
     protected function loadSingleLanguage(string $lang = 'en', $dir = './localization') : bool {
39 39
 
Please login to merge, or discard this patch.
src/Localization/Language.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
      * It also change $language parameter of the bot to the language returned.
87 87
      * @param $default_language <i>Optional</i>. Default language to return in case of errors.
88 88
      * @param $expiring_time <i>Optional</i>. Set the expiring time for the language on redis each time it is took from the sql database.
89
-     * @return Language for the current user, $default_language on errors.
89
+     * @return string for the current user, $default_language on errors.
90 90
      */
91 91
     public function getLanguageRedis($default_language = 'en', $expiring_time = '86400') : string {
92 92
 
Please login to merge, or discard this patch.