From 20ee384390ff03e0d3af55348d2e45e757db0042 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=B0=D0=BB=D0=B5=D1=80=D0=B8=D0=B9=20=D0=98=D0=B3?= =?UTF-8?q?=D0=BE=D1=80=D0=B5=D0=B2=D0=B8=D1=87=20=D0=9F=D0=B5=D1=87=D0=B5?= =?UTF-8?q?=D1=80=D1=81=D0=BA=D0=B8=D0=B9?= Date: Mon, 6 Dec 2021 15:07:48 +0300 Subject: [PATCH] Update Client.php @method Message editMessageText --- src/Client.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/Client.php b/src/Client.php index 57fe0b14..fed9569a 100644 --- a/src/Client.php +++ b/src/Client.php @@ -6,11 +6,18 @@ use ReflectionFunction; use TelegramBot\Api\Events\EventCollection; use TelegramBot\Api\Types\Update; +use TelegramBot\Api\Types\Message; +use TelegramBot\Api\Types\Inline\InlineKeyboardMarkup; +use TelegramBot\Api\Types\ReplyKeyboardRemove; +use TelegramBot\Api\Types\ForceReply; +use TelegramBot\Api\Types\ReplyKeyboardHide; +use TelegramBot\Api\Types\ReplyKeyboardMarkup; /** * Class Client * * @package TelegramBot\Api + * @method Message editMessageText(string $chatId, int $messageId, string $text, string $parseMode = null, bool $disablePreview = false, ReplyKeyboardMarkup|ReplyKeyboardHide|ForceReply|ReplyKeyboardRemove|InlineKeyboardMarkup|null $replyMarkup = null, string $inlineMessageId = null) */ class Client {