18 lines
No EOL
364 B
PHP
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;
|
|
} |