tgbotlib/src/TgBotLib/Methods/UnbanChatMember.php
2024-11-05 19:26:16 -05:00

34 lines
No EOL
735 B
PHP

<?php
namespace TgBotLib\Methods;
use TgBotLib\Abstracts\Method;
use TgBotLib\Bot;
class UnbanChatMember extends Method
{
/**
* @inheritDoc
*/
public static function execute(Bot $bot, array $parameters = []): mixed
{
// TODO: Implement execute() method.
}
/**
* @inheritDoc
*/
public static function getRequiredParameters(): ?array
{
// TODO: Implement getRequiredParameters() method.
}
/**
* @inheritDoc
*/
public static function getOptionalParameters(): ?array
{
// TODO: Implement getOptionalParameters() method.
}
}