@@ -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() |
@@ -128,7 +128,7 @@ |
||
128 | 128 | $notes['state'] = 0; |
129 | 129 | $this->conversation->update(); |
130 | 130 | |
131 | - $keyboard = array_map(function ($channel) { |
|
131 | + $keyboard = array_map(function($channel) { |
|
132 | 132 | return [$channel]; |
133 | 133 | }, $channels); |
134 | 134 |
@@ -61,7 +61,7 @@ |
||
61 | 61 | |
62 | 62 | /** @var ServerResponse[] $results */ |
63 | 63 | $results = Request::sendToActiveChats( |
64 | - 'sendMessage', //callback function to execute (see Request.php methods) |
|
64 | + 'sendMessage', //callback function to execute (see Request.php methods) |
|
65 | 65 | ['text' => $text], //Param to evaluate the request |
66 | 66 | [ |
67 | 67 | 'groups' => true, |