Completed
Push — master ( a56e0e...d75616 )
by Danilo
02:09
created
src/CoreBot.php 3 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -543,7 +543,7 @@  discard block
 block discarded – undo
543 543
      * - <code>record_audio</code> or <code>upload_audio</code> for audio files
544 544
      * - <code>upload_document</code> for general files
545 545
      * - <code>find_location</code> for location data
546
-     * @return True on success.
546
+     * @return boolean on success.
547 547
      */
548 548
     public function sendChatAction(string $action) : bool {
549 549
 
@@ -726,7 +726,7 @@  discard block
 block discarded – undo
726 726
      */
727 727
 
728 728
     /** \brief Core function to execute url request.
729
-     * @param $url The url to call using the curl session.
729
+     * @param string $url The url to call using the curl session.
730 730
      * @return Url response, false on error.
731 731
      */
732 732
     protected function exec_curl_request($url) {
Please login to merge, or discard this patch.
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -629,11 +629,11 @@
 block discarded – undo
629 629
     public function editInlineMessageText(string $inline_message_id, $text, string $reply_markup = null, string $parse_mode = 'HTML', bool $disable_web_preview = false) {
630 630
 
631 631
         $parameters = [
632
-           'inline_message_id' => $inline_message_id,
633
-           'text' => $text,
634
-           'reply_markup' => $inline_keyboard,
635
-           'parse_mode' => $parse_mode,
636
-           'disable_web_page_preview' => $disable_web_preview,
632
+            'inline_message_id' => $inline_message_id,
633
+            'text' => $text,
634
+            'reply_markup' => $inline_keyboard,
635
+            'parse_mode' => $parse_mode,
636
+            'disable_web_page_preview' => $disable_web_preview,
637 637
         ];
638 638
 
639 639
         return $this->exec_curl_request($this->api_url . 'editMessageText?' . http_build_query($parameters));
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -340,7 +340,7 @@
 block discarded – undo
340 340
         $bot_id = ($this->getMe())['id'];
341 341
 
342 342
         // If it is not valid
343
-        if(!isset($bot_id) || $bot_id == 0) {
343
+        if (!isset($bot_id) || $bot_id == 0) {
344 344
 
345 345
             // get it again
346 346
             $bot_id = ($this->getMe())['id'];
Please login to merge, or discard this patch.
src/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/Utility.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
             $delimitator_end = '</' . $tag . '>';
64 64
 
65 65
             // For each username
66
-            for($i = 0; $i !== $count; $i++) {
66
+            for ($i = 0; $i !== $count; $i++) {
67 67
 
68 68
                 // Put the Delimitator_end before the username and the start one after it
69 69
                 $string = str_replace($usernames[$i], $delimitator_end . $usernames[$i] . $delimitator_start, $string);
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
      * \details Remove the $modificator html formattation from a message containing telegram username, to let the user click them.
46 46
      * @param $string to parse.
47 47
      * @param $tag Formattation tag to remove.
48
-     * @return The string, modified if there are usernames. Otherwise $string.
48
+     * @return string string, modified if there are usernames. Otherwise $string.
49 49
      */
50 50
     static public function removeUsernameFormattation(string $string, string $tag) : string {
51 51
 
Please login to merge, or discard this patch.
src/Bot.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1069,7 +1069,7 @@
 block discarded – undo
1069 1069
         }
1070 1070
 
1071 1071
         // Iterate over all the row got
1072
-        while($user = $sth->fetch()) {
1072
+        while ($user = $sth->fetch()) {
1073 1073
 
1074 1074
             // Call getChat to know that this users haven't blocked the bot
1075 1075
             $user_data = $this->getChat($user[$this->id_column]);
Please login to merge, or discard this patch.
Doc Comments   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
 
125 125
     /**
126 126
      * \brief Get the text of the message, if set (for updates of type "message").
127
-     * @return Text of the message, empty string if not set.
127
+     * @return string of the message, empty string if not set.
128 128
      */
129 129
     public function getMessageText() : string {
130 130
 
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
 
141 141
     /**
142 142
      * \brief Get the data of callback query, if set (for updates of type "callback_query").
143
-     * @return Data of the callback query, empty string if not set.
143
+     * @return string of the callback query, empty string if not set.
144 144
      */
145 145
     public function getCallbackData() : string {
146 146
 
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
 
157 157
     /**
158 158
      * \brief Get the query received from the inline query (for updates of type "inline_query").
159
-     * @return The query sent by the user, throw exception if the current update is not an inline query.
159
+     * @return string query sent by the user, throw exception if the current update is not an inline query.
160 160
      */
161 161
     public function getInlineQuery() : string {
162 162
 
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
      * \details Set $chat_id for each update, $text, $data and $query are set for each update that contains them.
213 213
      * It also calls commands for each updates, before process methods.
214 214
      * @param $update Reference to the update received.
215
-     * @return The id of the update processed.
215
+     * @return integer id of the update processed.
216 216
      */
217 217
     public function processUpdate(array $update) : int {
218 218
 
@@ -771,7 +771,7 @@  discard block
 block discarded – undo
771 771
      * \brief Get current user language from redis, and set it in language.
772 772
      * \details Using redis database we get language stored and the value does not expires.
773 773
      * @param $default_language <i>Optional</i>. Default language to return in case of errors.
774
-     * @return Language for the current user, $default_language on errors.
774
+     * @return string for the current user, $default_language on errors.
775 775
      */
776 776
     public function getLanguageRedis($default_language = 'en') : string {
777 777
 
@@ -807,7 +807,7 @@  discard block
 block discarded – undo
807 807
      * It also change $language parameter of the bot to the language returned.
808 808
      * @param $default_language <i>Optional</i>. Default language to return in case of errors.
809 809
      * @param $expiring_time <i>Optional</i>. Set the expiring time for the language on redis each time it is took from the sql database.
810
-     * @return Language for the current user, $default_language on errors.
810
+     * @return string for the current user, $default_language on errors.
811 811
      */
812 812
     public function getLanguageRedisAsCache($default_language = 'en', $expiring_time = '86400') : string {
813 813
 
@@ -1008,7 +1008,7 @@  discard block
 block discarded – undo
1008 1008
      * \brief Get current user status from redis and set it in status variable.
1009 1009
      * \details Throw exception if redis connection is missing.
1010 1010
      * @param $default_status <i>Optional</i>. The default status to return in case there is no status for the current user.
1011
-     * @return The status for the current user, $default_status if missing.
1011
+     * @return integer status for the current user, $default_status if missing.
1012 1012
      */
1013 1013
     public function getStatus(int $default_status = -1) : int {
1014 1014
 
@@ -1055,7 +1055,7 @@  discard block
 block discarded – undo
1055 1055
     /** \brief Add a user to the database.
1056 1056
      * \details Add a user to the database in Bot::$user_table table and Bot::$id_column column using Bot::$pdo connection.
1057 1057
      * @param $chat_id chat_id of the user to add.
1058
-     * @return True on success.
1058
+     * @return boolean on success.
1059 1059
      */
1060 1060
     public function addUser($chat_id) : bool {
1061 1061
 
Please login to merge, or discard this patch.
src/InlineKeyboard.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
      * @param $buttons Buttons passed as inizialization.
28 28
      * @return The object created with the buttons passed.
29 29
      */
30
-    public function __construct(CoreBot &$bot = null, array $buttons = array()) {
30
+    public function __construct(CoreBot & $bot = null, array $buttons = array()) {
31 31
 
32 32
         $this->bot = $bot;
33 33
 
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
     public function getBackButton($json_serialized = true) {
136 136
 
137 137
         // Create the button
138
-        $inline_keyboard = [ 'inline_keyboard' =>
138
+        $inline_keyboard = ['inline_keyboard' =>
139 139
             [
140 140
                 [
141 141
                     [
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
     public function getBackSkipKeyboard($json_serialized = true) {
169 169
 
170 170
         // Create the keyboard
171
-        $inline_keyboard = [ 'inline_keyboard' =>
171
+        $inline_keyboard = ['inline_keyboard' =>
172 172
             [
173 173
                 [
174 174
                     [
Please login to merge, or discard this patch.
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -129,8 +129,8 @@
 block discarded – undo
129 129
         // If the user has already added a button in this row
130 130
         if ($this->column != 0) {
131 131
 
132
-             // Change row
133
-             $this->changeRow();
132
+                // Change row
133
+                $this->changeRow();
134 134
 
135 135
         }
136 136
 
Please login to merge, or discard this patch.