Completed
Push — ensure_correct_command_names ( 4dd80e )
by Armando
02:39
created
src/Telegram.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -801,7 +801,7 @@
 block discarded – undo
801 801
     /**
802 802
      * Delete any assigned webhook
803 803
      *
804
-     * @return mixed
804
+     * @return ServerResponse
805 805
      * @throws \Longman\TelegramBot\Exception\TelegramException
806 806
      */
807 807
     public function deleteWebhook()
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -787,7 +787,7 @@  discard block
 block discarded – undo
787 787
             throw new TelegramException('Hook url is empty!');
788 788
         }
789 789
 
790
-        $data        = array_intersect_key($data, array_flip([
790
+        $data = array_intersect_key($data, array_flip([
791 791
             'certificate',
792 792
             'max_connections',
793 793
             'allowed_updates',
@@ -902,7 +902,7 @@  discard block
 block discarded – undo
902 902
         }
903 903
 
904 904
         $this->run_commands  = true;
905
-        $this->botan_enabled = false;   // Force disable Botan.io integration, we don't want to track self-executed commands!
905
+        $this->botan_enabled = false; // Force disable Botan.io integration, we don't want to track self-executed commands!
906 906
 
907 907
         $result = Request::getMe();
908 908
 
@@ -919,8 +919,8 @@  discard block
 block discarded – undo
919 919
         }
920 920
 
921 921
 
922
-        $this->enableAdmin($bot_id);    // Give bot access to admin commands
923
-        $this->getCommandsList();       // Load full commands list
922
+        $this->enableAdmin($bot_id); // Give bot access to admin commands
923
+        $this->getCommandsList(); // Load full commands list
924 924
 
925 925
         foreach ($commands as $command) {
926 926
             $this->update = new Update(
Please login to merge, or discard this patch.