| 1 | <?php |
||
| 18 | class ChannelpostCommand extends SystemCommand |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var string |
||
| 22 | */ |
||
| 23 | protected $name = 'Channelpost'; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var string |
||
| 27 | */ |
||
| 28 | protected $description = 'Handle channel post'; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @var string |
||
| 32 | */ |
||
| 33 | protected $version = '1.0.0'; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Execute command |
||
| 37 | * |
||
| 38 | * @return mixed |
||
| 39 | * @throws \Longman\TelegramBot\Exception\TelegramException |
||
| 40 | */ |
||
| 41 | public function execute() |
||
| 47 | } |
||
| 48 |