@@ -75,7 +75,7 @@ |
||
75 | 75 | |
76 | 76 | $this->initCommands(); |
77 | 77 | |
78 | - // Process all updates received |
|
78 | + // Process all updates received |
|
79 | 79 | while (true) { |
80 | 80 | |
81 | 81 | $updates = $this->getUpdates($offset, $limit, $timeout); |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | * \brief (<i>Internal</i>)Get first update offset in redis. |
47 | 47 | * \details Called by getUpdatesRedis to get the offset saved in redis or to get it from telegram and save it in redis. |
48 | 48 | * @param $offset_key Name of the variable where the offset is saved on Redis |
49 | - * @return Id of the first update to process. |
|
49 | + * @return integer of the first update to process. |
|
50 | 50 | */ |
51 | 51 | protected function getUpdateOffsetRedis(string $offset_key) : int |
52 | 52 | { |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | * \details Called by getUpdatesDatabase to get the offset saved in database or to get it from telegram and save it in database. |
116 | 116 | * @param $table_name Name of the table where offset is saved in the database |
117 | 117 | * @param $column_name Name of the column where the offset is saved in the database |
118 | - * @return Id of the first update to process. |
|
118 | + * @return integer of the first update to process. |
|
119 | 119 | */ |
120 | 120 | protected function getUpdateOffsetDatabase(string $table_name, string $column_name) : int |
121 | 121 | { |
@@ -3,7 +3,6 @@ |
||
3 | 3 | namespace PhpBotFramework\Core; |
4 | 4 | |
5 | 5 | use PhpBotFramework\Exceptions\BotException; |
6 | - |
|
7 | 6 | use PhpBotFramework\Entities\Message; |
8 | 7 | use PhpBotFramework\Entities\CallbackQuery; |
9 | 8 | use PhpBotFramework\Entities\ChosenInlineResult; |
@@ -232,7 +232,6 @@ |
||
232 | 232 | * \brief Called every time a post get edited in the channel where the bot is in. |
233 | 233 | * \details Override it to script the bot answer for each post edited in a channel. |
234 | 234 | * <code>$chat_id</code> set inside of this function. |
235 | - * @param Message $post The message edited in the channel. |
|
236 | 235 | */ |
237 | 236 | protected function processEditedChannelPost(Message $edited_post) |
238 | 237 | { |
@@ -63,7 +63,7 @@ |
||
63 | 63 | /** |
64 | 64 | * \brief (<i>Internal</i>) Process the message to check if it triggers a command of this type. |
65 | 65 | * @param $message Message to process. |
66 | - * @return True if the message triggered a command. |
|
66 | + * @return boolean if the message triggered a command. |
|
67 | 67 | */ |
68 | 68 | protected function processMessageRegexCommand(array $message) : bool |
69 | 69 | { |
@@ -62,7 +62,7 @@ |
||
62 | 62 | * @param $reply_markup Inline keyboard object (Not JSON serialized, use getArray from InlineKeyboard class). |
63 | 63 | * @param $parse_mode <i>Optional</i>. Formattation of the message. |
64 | 64 | * @param $disable_web_preview <i>Optional</i>. Disables link previews for links in the sent message |
65 | - * @return Id the the article added |
|
65 | + * @return integer the the article added |
|
66 | 66 | */ |
67 | 67 | public function newArticle($title, $message_text, $description = '', array $reply_markup = null, $parse_mode = 'HTML', $disable_web_preview = false) |
68 | 68 | { |
@@ -148,8 +148,8 @@ |
||
148 | 148 | |
149 | 149 | // If the user has already added a button in this row |
150 | 150 | if ($this->column != 0) { |
151 | - // Change row |
|
152 | - $this->changeRow(); |
|
151 | + // Change row |
|
152 | + $this->changeRow(); |
|
153 | 153 | } |
154 | 154 | |
155 | 155 | // Add buttons to the next row |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | * @return The object created with the buttons passed. |
59 | 59 | */ |
60 | 60 | public function __construct( |
61 | - \PhpBotFramework\Bot &$bot = null, |
|
61 | + \PhpBotFramework\Bot & $bot = null, |
|
62 | 62 | array $buttons = array() |
63 | 63 | ) { |
64 | 64 | |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | { |
226 | 226 | |
227 | 227 | // Create the button |
228 | - $inline_keyboard = [ 'inline_keyboard' => |
|
228 | + $inline_keyboard = ['inline_keyboard' => |
|
229 | 229 | [ |
230 | 230 | [ |
231 | 231 | [ |
@@ -254,7 +254,7 @@ discard block |
||
254 | 254 | { |
255 | 255 | |
256 | 256 | // Create the keyboard |
257 | - $inline_keyboard = [ 'inline_keyboard' => |
|
257 | + $inline_keyboard = ['inline_keyboard' => |
|
258 | 258 | [ |
259 | 259 | [ |
260 | 260 | [ |
@@ -62,7 +62,7 @@ |
||
62 | 62 | |
63 | 63 | protected function mergeWithDefaults($params) |
64 | 64 | { |
65 | - $DEFAULTS = [ 'adapter' => 'mysql', 'host' => 'localhost' ]; |
|
65 | + $DEFAULTS = ['adapter' => 'mysql', 'host' => 'localhost']; |
|
66 | 66 | return array_merge($DEFAULTS, $params); |
67 | 67 | } |
68 | 68 |
@@ -100,7 +100,7 @@ |
||
100 | 100 | |
101 | 101 | // Exec getUpdates |
102 | 102 | $this->execRequest('getUpdates?' . http_build_query($parameters) |
103 | - . '&allowed_updates=' . json_encode($allowed_updates)); |
|
103 | + . '&allowed_updates=' . json_encode($allowed_updates)); |
|
104 | 104 | } |
105 | 105 | |
106 | 106 | /** @} */ |
@@ -84,7 +84,7 @@ |
||
84 | 84 | * @param $default_language <i>Optional</i>. Default language to return in case of errors. |
85 | 85 | * @param $expiring_time <i>Optional</i>. Set the expiring time for the language on |
86 | 86 | * redis each time it is took from the sql database. |
87 | - * @return Language for the current user, $default_language on errors. |
|
87 | + * @return string for the current user, $default_language on errors. |
|
88 | 88 | */ |
89 | 89 | public function getLanguageRedis($default_language = 'en', $expiring_time = '86400') : string |
90 | 90 | { |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | |
54 | 54 | // Get the language from the bot |
55 | 55 | $sth = $this->pdo->prepare('SELECT language FROM ' . $this->user_table . ' WHERE ' |
56 | - . $this->id_column . ' = :chat_id'); |
|
56 | + . $this->id_column . ' = :chat_id'); |
|
57 | 57 | $sth->bindParam(':chat_id', $this->_chat_id); |
58 | 58 | |
59 | 59 | try { |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | |
120 | 120 | // Update the language in the database |
121 | 121 | $sth = $this->pdo->prepare('UPDATE ' . $this->user_table . ' SET language = :language WHERE ' |
122 | - . $this->id_column . ' = :id'); |
|
122 | + . $this->id_column . ' = :id'); |
|
123 | 123 | $sth->bindParam(':language', $language); |
124 | 124 | $sth->bindParam(':id', $this->_chat_id); |
125 | 125 |
@@ -18,8 +18,6 @@ |
||
18 | 18 | |
19 | 19 | namespace PhpBotFramework\Test; |
20 | 20 | |
21 | -use PhpBotFramework\Entities\Message; |
|
22 | - |
|
23 | 21 | /* \class FakeUpdate |
24 | 22 | * \brief Contains abstract methods for processing fake updates. |
25 | 23 | */ |