Add GetMyName method to TgBotLib

This commit is contained in:
netkas 2024-11-13 15:25:17 -05:00
parent d6f13f3177
commit bf648ec2af
2 changed files with 41 additions and 0 deletions

View file

@ -39,6 +39,7 @@
use TgBotLib\Methods\GetForumTopicIconStickers;
use TgBotLib\Methods\GetMe;
use TgBotLib\Methods\GetMyCommands;
use TgBotLib\Methods\GetMyName;
use TgBotLib\Methods\GetUpdates;
use TgBotLib\Methods\GetUserChatBoosts;
use TgBotLib\Methods\GetUserProfilePhotos;
@ -168,6 +169,7 @@
case DELETE_MY_COMMANDS = 'deleteMyCommands';
case GET_MY_COMMANDS = 'getMyCommands';
case SET_MY_NAME = 'setMyName';
case GET_MY_NAME = 'getMyName';
/**
* Executes a command on the provided bot with the given parameters.
@ -261,6 +263,7 @@
self::DELETE_MY_COMMANDS => DeleteMyCommands::execute($bot, $parameters),
self::GET_MY_COMMANDS => GetMyCommands::execute($bot, $parameters),
self::SET_MY_NAME => SetMyName::execute($bot, $parameters),
self::GET_MY_NAME => GetMyName::execute($bot, $parameters),
};
}
}

View file

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