Completed
Push — master ( 4a3084...5cdc2a )
by Danilo
02:10
created
src/InlineKeyboard.php 1 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.
src/CoreBot.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -418,7 +418,7 @@  discard block
 block discarded – undo
418 418
      */
419 419
     public function setWebhook(array $params) {
420 420
         return $this->exec_curl_request($this->_api_url . 'setWebhook?'
421
-                                                       . http_build_query($params));
421
+                                                        . http_build_query($params));
422 422
     }
423 423
 
424 424
     /**
@@ -766,11 +766,11 @@  discard block
 block discarded – undo
766 766
     public function editInlineMessageText(string $inline_message_id, $text, string $reply_markup = null, string $parse_mode = 'HTML', bool $disable_web_preview = false) {
767 767
 
768 768
         $parameters = [
769
-           'inline_message_id' => $inline_message_id,
770
-           'text' => $text,
771
-           'reply_markup' => $inline_keyboard,
772
-           'parse_mode' => $parse_mode,
773
-           'disable_web_page_preview' => $disable_web_preview,
769
+            'inline_message_id' => $inline_message_id,
770
+            'text' => $text,
771
+            'reply_markup' => $inline_keyboard,
772
+            'parse_mode' => $parse_mode,
773
+            'disable_web_page_preview' => $disable_web_preview,
774 774
         ];
775 775
 
776 776
         return $this->exec_curl_request($this->_api_url . 'editMessageText?' . http_build_query($parameters));
Please login to merge, or discard this patch.