Add GetChat method to retrieve chat details

This commit is contained in:
netkas 2024-11-06 17:17:13 -05:00
parent 1661e744ab
commit 4be031f96c
3 changed files with 42 additions and 1 deletions

View file

@ -0,0 +1,38 @@
<?php
namespace TgBotLib\Methods;
use TgBotLib\Abstracts\Method;
use TgBotLib\Bot;
use TgBotLib\Enums\Methods;
use TgBotLib\Objects\ChatFullInfo;
class GetChat extends Method
{
/**
* @inheritDoc
*/
public static function execute(Bot $bot, array $parameters = []): ChatFullInfo
{
return ChatFullInfo::fromArray(self::executeCurl(self::buildPost($bot, Methods::GET_CHAT->value, $parameters)));
}
/**
* @inheritDoc
*/
public static function getRequiredParameters(): ?array
{
return [
'chat_id'
];
}
/**
* @inheritDoc
*/
public static function getOptionalParameters(): ?array
{
return null;
}
}