@@ -55,7 +55,7 @@ discard block |
||
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 |
||
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() |
@@ -251,7 +251,7 @@ |
||
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 | */ |
@@ -42,11 +42,11 @@ |
||
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 | /** |
@@ -757,7 +757,7 @@ discard block |
||
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 |
||
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() |
@@ -64,7 +64,7 @@ discard block |
||
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 |
||
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 |