tgbotlib/src/TgBotLib/Interfaces/CommandInterface.php
2024-10-02 00:18:12 -04:00

18 lines
No EOL
364 B
PHP

<?php
namespace TgBotLib\Interfaces;
use TgBotLib\BotOld;
use TgBotLib\Objects\Update;
interface CommandInterface
{
/**
* Execute the command
*
* @param BotOld $bot
* @param Update $update
* @return void
*/
public function handle(BotOld $bot, Update $update): void;
}