| 1 | <?php |
||
| 15 | abstract class SystemCommand extends Command |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * A system command just executes |
||
| 19 | * |
||
| 20 | * Although system commands should just work and return a successful ServerResponse, |
||
| 21 | * each system command can override this method to add custom functionality. |
||
| 22 | * |
||
| 23 | * @return \Longman\TelegramBot\Entities\ServerResponse |
||
| 24 | */ |
||
| 25 | public function execute() |
||
| 30 | } |
||
| 31 |