Completed
Push — 955-bot_api_4.3 ( a9b15e...090416 )
by Armando
07:26
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/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.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -856,7 +856,7 @@
 block discarded – undo
856 856
     protected function ucfirstUnicode($str, $encoding = 'UTF-8')
857 857
     {
858 858
         return mb_strtoupper(mb_substr($str, 0, 1, $encoding), $encoding)
859
-               . mb_strtolower(mb_substr($str, 1, mb_strlen($str), $encoding), $encoding);
859
+                . mb_strtolower(mb_substr($str, 1, mb_strlen($str), $encoding), $encoding);
860 860
     }
861 861
 
862 862
     /**
Please login to merge, or discard this patch.
src/Request.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -372,7 +372,7 @@  discard block
 block discarded – undo
372 372
      * @param bool  $has_resource
373 373
      * @param array $multipart
374 374
      *
375
-     * @return mixed
375
+     * @return string
376 376
      */
377 377
     private static function mediaInputHelper($item, &$has_resource, array &$multipart)
378 378
     {
@@ -447,7 +447,7 @@  discard block
 block discarded – undo
447 447
      *
448 448
      * @param \Longman\TelegramBot\Entities\File $file
449 449
      *
450
-     * @return boolean
450
+     * @return boolean|string
451 451
      * @throws \Longman\TelegramBot\Exception\TelegramException
452 452
      */
453 453
     public static function downloadFile(File $file)
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
@@ -49,14 +49,14 @@
 block discarded – undo
49 49
     {
50 50
         return is_array($data) &&
51 51
                array_key_exists('text', $data) && (
52
-                   array_key_exists('url', $data) ||
52
+                    array_key_exists('url', $data) ||
53 53
                    array_key_exists('login_url', $data) ||
54 54
                    array_key_exists('callback_data', $data) ||
55 55
                    array_key_exists('switch_inline_query', $data) ||
56 56
                    array_key_exists('switch_inline_query_current_chat', $data) ||
57 57
                    array_key_exists('callback_game', $data) ||
58 58
                    array_key_exists('pay', $data)
59
-               );
59
+                );
60 60
     }
61 61
 
62 62
     /**
Please login to merge, or discard this patch.