@@ -14,7 +14,6 @@ |
||
14 | 14 | use Longman\TelegramBot\Conversation; |
15 | 15 | use Longman\TelegramBot\Commands\AdminCommand; |
16 | 16 | use Longman\TelegramBot\Entities\Message; |
17 | -use Longman\TelegramBot\Entities\ReplyKeyboardHide; |
|
18 | 17 | use Longman\TelegramBot\Entities\ReplyKeyboardMarkup; |
19 | 18 | use Longman\TelegramBot\Exception\TelegramException; |
20 | 19 |
@@ -80,7 +80,7 @@ discard block |
||
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 |
||
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()), |
@@ -45,7 +45,7 @@ |
||
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) |
@@ -475,7 +475,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 | { |
@@ -296,7 +296,7 @@ |
||
296 | 296 | $this->type = 'Voice'; |
297 | 297 | } |
298 | 298 | |
299 | - $this->caption = isset($data['caption']) ? $data['caption'] : null;//string |
|
299 | + $this->caption = isset($data['caption']) ? $data['caption'] : null; //string |
|
300 | 300 | |
301 | 301 | $this->contact = isset($data['contact']) ? $data['contact'] : null; |
302 | 302 | if (!empty($this->contact)) { |
@@ -34,7 +34,7 @@ |
||
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 | { |
@@ -102,7 +102,7 @@ |
||
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 | { |
@@ -729,7 +729,7 @@ |
||
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() |
@@ -328,7 +328,7 @@ |
||
328 | 328 | if ($response->isOk()) { |
329 | 329 | //Process all updates |
330 | 330 | /** @var Update $result */ |
331 | - foreach ((array)$response->getResult() as $result) { |
|
331 | + foreach ((array) $response->getResult() as $result) { |
|
332 | 332 | $this->processUpdate($result); |
333 | 333 | } |
334 | 334 | } |
@@ -55,7 +55,7 @@ |
||
55 | 55 | |
56 | 56 | //Only get enabled Admin and User commands |
57 | 57 | /** @var Command[] $command_objs */ |
58 | - $command_objs = array_filter($this->telegram->getCommandsList(), function ($command_obj) { |
|
58 | + $command_objs = array_filter($this->telegram->getCommandsList(), function($command_obj) { |
|
59 | 59 | /** @var Command $command_obj */ |
60 | 60 | return !$command_obj->isSystemCommand() && $command_obj->isEnabled(); |
61 | 61 | }); |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | return ''; |
75 | 75 | } |
76 | 76 | |
77 | - return (string)$response->getBody(); |
|
77 | + return (string) $response->getBody(); |
|
78 | 78 | } |
79 | 79 | |
80 | 80 | /** |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | } |
93 | 93 | |
94 | 94 | //http://openweathermap.org/weather-conditions |
95 | - $conditions = [ |
|
95 | + $conditions = [ |
|
96 | 96 | 'clear' => ' ☀️', |
97 | 97 | 'clouds' => ' ☁️', |
98 | 98 | 'rain' => ' ☔', |
@@ -84,7 +84,7 @@ |
||
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 | ) |