From bdcce70ce48b44936b37f47f94249a2b810129ba Mon Sep 17 00:00:00 2001 From: netkas Date: Sun, 6 Oct 2024 19:00:17 -0400 Subject: [PATCH] Add PHPDoc annotation for the execute method in Logout --- src/TgBotLib/Methods/Logout.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/TgBotLib/Methods/Logout.php b/src/TgBotLib/Methods/Logout.php index 9f3b42b..9ca24ea 100644 --- a/src/TgBotLib/Methods/Logout.php +++ b/src/TgBotLib/Methods/Logout.php @@ -8,6 +8,9 @@ class Logout extends Method { + /** + * @inheritDoc + */ public static function execute(Bot $bot, array $parameters=[]): bool { return (bool) self::executeCurl(self::buildPost($bot, Methods::LOGOUT->value));