From d3e98b1f23d729e6d3886fbd07d2c50ce3fe1999 Mon Sep 17 00:00:00 2001 From: Netkas Date: Sun, 12 Feb 2023 13:43:38 -0500 Subject: [PATCH] Added \TgBotLib\Bot --- src/TgBotLib/Bot.php | 48 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 src/TgBotLib/Bot.php diff --git a/src/TgBotLib/Bot.php b/src/TgBotLib/Bot.php new file mode 100644 index 0000000..d9a8909 --- /dev/null +++ b/src/TgBotLib/Bot.php @@ -0,0 +1,48 @@ +username = $username; + $this->token = $token; + } + + /** + * @return string + */ + public function getUsername(): string + { + return $this->username; + } + + /** + * @return string + */ + public function getToken(): string + { + return $this->token; + } + } \ No newline at end of file