Completed
Pull Request — develop (#288)
by Armando
27:44 queued 12:40
created
src/Entities/Message.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -188,7 +188,7 @@
 block discarded – undo
188 188
             $this->type = 'Voice';
189 189
         }
190 190
 
191
-        $this->caption = isset($data['caption']) ? $data['caption'] : null;//string
191
+        $this->caption = isset($data['caption']) ? $data['caption'] : null; //string
192 192
 
193 193
         $this->contact = isset($data['contact']) ? $data['contact'] : null;
194 194
         if (!empty($this->contact)) {
Please login to merge, or discard this patch.
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -475,7 +475,7 @@  discard block
 block discarded – undo
475 475
     /**
476 476
      * Get date
477 477
      *
478
-     * @return mixed
478
+     * @return integer|null
479 479
      */
480 480
     public function getDate()
481 481
     {
@@ -515,7 +515,7 @@  discard block
 block discarded – undo
515 515
     /**
516 516
      * Get forward date
517 517
      *
518
-     * @return mixed
518
+     * @return integer|null
519 519
      */
520 520
     public function getForwardDate()
521 521
     {
@@ -525,7 +525,7 @@  discard block
 block discarded – undo
525 525
     /**
526 526
      * Get edit date
527 527
      *
528
-     * @return mixed
528
+     * @return integer|null
529 529
      */
530 530
     public function getEditDate()
531 531
     {
@@ -666,7 +666,7 @@  discard block
 block discarded – undo
666 666
     /**
667 667
      * Get new chat participant
668 668
      *
669
-     * @return mixed
669
+     * @return User|null
670 670
      */
671 671
     public function getNewChatParticipant()
672 672
     {
@@ -676,7 +676,7 @@  discard block
 block discarded – undo
676 676
     /**
677 677
      * Get left chat participant
678 678
      *
679
-     * @return mixed
679
+     * @return User|null
680 680
      */
681 681
     public function getLeftChatParticipant()
682 682
     {
Please login to merge, or discard this patch.
src/Commands/AdminCommands/SendtochannelCommand.php 3 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use Longman\TelegramBot\Conversation;
15 15
 use Longman\TelegramBot\Commands\UserCommand;
16 16
 use Longman\TelegramBot\Entities\ForceReply;
17
-use Longman\TelegramBot\Entities\ReplyKeyboardHide;
18 17
 use Longman\TelegramBot\Entities\ReplyKeyboardMarkup;
19 18
 
20 19
 /**
Please login to merge, or discard this 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.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
         $this->conversation = new Conversation($user_id, $chat_id, $this->getName());
81 81
         $notes              = &$this->conversation->notes;
82 82
 
83
-        $channels = (array)$this->getConfig('your_channel');
83
+        $channels = (array) $this->getConfig('your_channel');
84 84
         if (isset($notes['state'])) {
85 85
             $state = $notes['state'];
86 86
         } else {
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
         ];
345 345
 
346 346
         if ($text !== '') {
347
-            $channels      = (array)$this->getConfig('your_channel');
347
+            $channels      = (array) $this->getConfig('your_channel');
348 348
             $first_channel = $channels[0];
349 349
             $data['text']  = $this->publish(
350 350
                 new Message($message->reflect(), $this->telegram->getBotName()),
Please login to merge, or discard this patch.
src/Telegram.php 2 patches
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.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -729,7 +729,7 @@
 block discarded – undo
729 729
     /**
730 730
      * Unset Webhook for bot
731 731
      *
732
-     * @return mixed
732
+     * @return ServerResponse
733 733
      * @throws \Longman\TelegramBot\Exception\TelegramException
734 734
      */
735 735
     public function unsetWebHook()
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/Entities/Entity.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     /**
46 46
      * Reflect
47 47
      *
48
-     * @param null $object
48
+     * @param Entity $object
49 49
      * @return array
50 50
      */
51 51
     public function reflect($object = null)
Please login to merge, or discard this patch.
src/Entities/ServerResponse.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      * ServerResponse constructor.
35 35
      *
36 36
      * @param array $data
37
-     * @param       $bot_name
37
+     * @param       string|null $bot_name
38 38
      */
39 39
     public function __construct(array $data, $bot_name)
40 40
     {
Please login to merge, or discard this patch.
src/Entities/Update.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
     /**
103 103
      * Get update id
104 104
      *
105
-     * @return mixed|null
105
+     * @return integer
106 106
      */
107 107
     public function getUpdateId()
108 108
     {
Please login to merge, or discard this patch.
src/Commands/UserCommands/WeatherCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
             throw new TelegramException($e->getMessage());
73 73
         }
74 74
 
75
-        return (string)$response->getBody();
75
+        return (string) $response->getBody();
76 76
     }
77 77
 
78 78
     /**
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
             }
91 91
 
92 92
             //http://openweathermap.org/weather-conditions
93
-            $conditions     = [
93
+            $conditions = [
94 94
                 'clear'        => ' ☀️',
95 95
                 'clouds'       => ' ☁️',
96 96
                 'rain'         => ' ☔',
Please login to merge, or discard this patch.
src/DB.php 2 patches
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.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -262,7 +262,7 @@
 block discarded – undo
262 262
         }
263 263
 
264 264
         //Convert each Entity item into an object based on its JSON reflection
265
-        $json_entities = array_map(function ($entity) {
265
+        $json_entities = array_map(function($entity) {
266 266
             return json_decode($entity, true);
267 267
         }, $entities);
268 268
 
Please login to merge, or discard this patch.