1 | <?php |
||
21 | class InlinequeryCommand extends SystemCommand |
||
22 | { |
||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | protected $name = 'inlinequery'; |
||
27 | |||
28 | /** |
||
29 | * @var string |
||
30 | */ |
||
31 | protected $description = 'Reply to inline query'; |
||
32 | |||
33 | /** |
||
34 | * @var string |
||
35 | */ |
||
36 | protected $version = '1.0.0'; |
||
37 | |||
38 | /** |
||
39 | * Command execute method |
||
40 | * |
||
41 | * @return mixed |
||
42 | * @throws \Longman\TelegramBot\Exception\TelegramException |
||
43 | */ |
||
44 | public function execute() |
||
52 | } |
||
53 |