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