Completed
Branch feature/improve-code (a8c279)
by Avtandil
06:09
created
src/Telegram.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -720,7 +720,7 @@
 block discarded – undo
720 720
     /**
721 721
      * Unset Webhook for bot
722 722
      *
723
-     * @return mixed
723
+     * @return Entities\ServerResponse
724 724
      * @throws \Longman\TelegramBot\Exception\TelegramException
725 725
      */
726 726
     public function unsetWebHook()
Please login to merge, or discard this patch.
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -288,9 +288,9 @@  discard block
 block discarded – undo
288 288
     {
289 289
         if (!DB::isDbConnected()) {
290 290
             return new Entities\ServerResponse([
291
-                                                   'ok'          => false,
292
-                                                   'description' => 'getUpdates needs MySQL connection!',
293
-                                               ], $this->bot_name);
291
+                                                    'ok'          => false,
292
+                                                    'description' => 'getUpdates needs MySQL connection!',
293
+                                                ], $this->bot_name);
294 294
         }
295 295
 
296 296
         //DB Query
@@ -762,7 +762,7 @@  discard block
 block discarded – undo
762 762
         return mb_strtoupper(mb_substr($str, 0, 1, $encoding), $encoding) . mb_strtolower(mb_substr($str, 1,
763 763
                                                                                                     mb_strlen($str),
764 764
                                                                                                     $encoding),
765
-                                                                                          $encoding);
765
+                                                                                            $encoding);
766 766
     }
767 767
 
768 768
     /**
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -307,7 +307,7 @@
 block discarded – undo
307 307
 
308 308
         if ($response->isOk()) {
309 309
             //Process all updates
310
-            foreach ((array)$response->getResult() as $result) {
310
+            foreach ((array) $response->getResult() as $result) {
311 311
                 $this->processUpdate($result);
312 312
             }
313 313
         }
Please login to merge, or discard this patch.
src/Request.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
                 'first_name' => 'botname',
154 154
                 'username'   => 'namebot',
155 155
             ];
156
-            $data['chat']       = ['id' => $data['chat_id']];
156
+            $data['chat'] = ['id' => $data['chat_id']];
157 157
 
158 158
             $fake_response['result'] = $data;
159 159
         }
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
 
177 177
         //Fix so that the keyboard markup is a string, not an object
178 178
         if (isset($data['reply_markup']) && !is_string($data['reply_markup'])) {
179
-            $data['reply_markup'] = (string)$data['reply_markup'];
179
+            $data['reply_markup'] = (string) $data['reply_markup'];
180 180
         }
181 181
 
182 182
         $request_params = ['debug' => $debug_handle];
Please login to merge, or discard this patch.
src/ConversationDB.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
         }
85 85
 
86 86
         try {
87
-            $sth    = self::$pdo->prepare('INSERT INTO `' . TB_CONVERSATION . '`
87
+            $sth = self::$pdo->prepare('INSERT INTO `' . TB_CONVERSATION . '`
88 88
                 (
89 89
                 `status`, `user_id`, `chat_id`, `command`, `notes`, `created_at`, `updated_at`
90 90
                 )
Please login to merge, or discard this patch.
src/DB.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -297,7 +297,7 @@  discard block
 block discarded – undo
297 297
             $sth_insert_telegram_update->bindParam(':message_id', $message_id, PDO::PARAM_INT);
298 298
             $sth_insert_telegram_update->bindParam(':inline_query_id', $inline_query_id, PDO::PARAM_INT);
299 299
             $sth_insert_telegram_update->bindParam(':chosen_inline_result_id', $chosen_inline_result_id,
300
-                                                   PDO::PARAM_INT);
300
+                                                    PDO::PARAM_INT);
301 301
             $sth_insert_telegram_update->bindParam(':callback_query_id', $callback_query_id, PDO::PARAM_INT);
302 302
             $sth_insert_telegram_update->bindParam(':edited_message_id', $edited_message_id, PDO::PARAM_INT);
303 303
 
@@ -459,7 +459,7 @@  discard block
 block discarded – undo
459 459
             if (self::insertChosenInlineResultRequest($chosen_inline_result)) {
460 460
                 $chosen_inline_result_local_id = self::$pdo->lastInsertId();
461 461
                 return self::insertTelegramUpdate($update_id, null, null, null, $chosen_inline_result_local_id, null,
462
-                                                  null);
462
+                                                    null);
463 463
             }
464 464
         } elseif ($update->getUpdateType() == 'callback_query') {
465 465
             $callback_query = $update->getCallbackQuery();
@@ -475,7 +475,7 @@  discard block
 block discarded – undo
475 475
                 $chat_id                 = $edited_message->getChat()->getId();
476 476
                 $edited_message_local_id = self::$pdo->lastInsertId();
477 477
                 return self::insertTelegramUpdate($update_id, $chat_id, null, null, null, null,
478
-                                                  $edited_message_local_id);
478
+                                                    $edited_message_local_id);
479 479
             }
480 480
         }
481 481
 
Please login to merge, or discard this patch.