Completed
Pull Request — develop (#430)
by
unknown
03:01
created
src/Commands/AdminCommands/SendtochannelCommand.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
     /**
56 56
      * Command execute method
57 57
      *
58
-     * @return \Longman\TelegramBot\Entities\ServerResponse|mixed
58
+     * @return \Longman\TelegramBot\Entities\ServerResponse
59 59
      * @throws \Longman\TelegramBot\Exception\TelegramException
60 60
      */
61 61
     public function execute()
@@ -329,7 +329,7 @@  discard block
 block discarded – undo
329 329
      *
330 330
      * @todo Why send just to the first found channel?
331 331
      *
332
-     * @return mixed
332
+     * @return \Longman\TelegramBot\Entities\ServerResponse
333 333
      * @throws \Longman\TelegramBot\Exception\TelegramException
334 334
      */
335 335
     public function executeNoDb()
Please login to merge, or discard this patch.
src/DB.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -251,7 +251,7 @@
 block discarded – undo
251 251
      * @todo Find a better way, as json_* functions are very heavy
252 252
      *
253 253
      * @param array|null $entities
254
-     * @param mixed      $default
254
+     * @param string|null      $default
255 255
      *
256 256
      * @return mixed
257 257
      */
Please login to merge, or discard this patch.
src/Entities/InlineKeyboardButton.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,11 +42,11 @@
 block discarded – undo
42 42
     {
43 43
         return is_array($data) &&
44 44
                array_key_exists('text', $data) && (
45
-                   array_key_exists('url', $data) ||
45
+                    array_key_exists('url', $data) ||
46 46
                    array_key_exists('callback_data', $data) ||
47 47
                    array_key_exists('switch_inline_query', $data) ||
48 48
                    array_key_exists('switch_inline_query_current_chat', $data)
49
-               );
49
+                );
50 50
     }
51 51
 
52 52
     /**
Please login to merge, or discard this patch.
src/Telegram.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -757,7 +757,7 @@  discard block
 block discarded – undo
757 757
      *
758 758
      * This is kept for backwards compatibility!
759 759
      *
760
-     * @return mixed
760
+     * @return ServerResponse
761 761
      * @throws \Longman\TelegramBot\Exception\TelegramException
762 762
      */
763 763
     public function unsetWebhook()
@@ -768,7 +768,7 @@  discard block
 block discarded – undo
768 768
     /**
769 769
      * Delete any assigned webhook
770 770
      *
771
-     * @return mixed
771
+     * @return ServerResponse
772 772
      * @throws \Longman\TelegramBot\Exception\TelegramException
773 773
      */
774 774
     public function deleteWebhook()
Please login to merge, or discard this patch.
src/Commands/Command.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      *
65 65
      * @var bool
66 66
      */
67
-     protected $show_in_help = true;
67
+        protected $show_in_help = true;
68 68
 
69 69
     /**
70 70
      * Version
@@ -264,10 +264,10 @@  discard block
 block discarded – undo
264 264
      *
265 265
      * @return bool
266 266
      */
267
-     public function showInHelp()
268
-     {
269
-     	return $this->show_in_help;
270
-     }
267
+        public function showInHelp()
268
+        {
269
+            return $this->show_in_help;
270
+        }
271 271
 
272 272
     /**
273 273
      * Check if command is enabled
Please login to merge, or discard this patch.