Add UnbanChatMember method to TgBotLib
This commit is contained in:
parent
9e2e19d593
commit
2377b239f3
2 changed files with 37 additions and 0 deletions
34
src/TgBotLib/Methods/UnbanChatMember.php
Normal file
34
src/TgBotLib/Methods/UnbanChatMember.php
Normal file
|
@ -0,0 +1,34 @@
|
|||
<?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.
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue