Moved Objects

This commit is contained in:
netkas 2024-10-02 00:18:12 -04:00
parent 848a2a78e3
commit 6c67e97a4b
167 changed files with 368 additions and 373 deletions

View file

@ -15,36 +15,36 @@
use TgBotLib\Interfaces\CommandInterface;
use TgBotLib\Interfaces\EventInterface;
use TgBotLib\Interfaces\ObjectTypeInterface;
use TgBotLib\Objects\Telegram\BotCommandScope;
use TgBotLib\Objects\Telegram\BotDescription;
use TgBotLib\Objects\Telegram\BotShortDescription;
use TgBotLib\Objects\Telegram\Chat;
use TgBotLib\Objects\Telegram\ChatAdministratorRights;
use TgBotLib\Objects\Telegram\ChatInviteLink;
use TgBotLib\Objects\Telegram\ChatMember;
use TgBotLib\Objects\Telegram\File;
use TgBotLib\Objects\Telegram\ForumTopic;
use TgBotLib\Objects\Telegram\InlineQueryResult\InlineQueryResultArticle;
use TgBotLib\Objects\Telegram\InlineQueryResult\InlineQueryResultAudio;
use TgBotLib\Objects\Telegram\InlineQueryResult\InlineQueryResultContact;
use TgBotLib\Objects\Telegram\InlineQueryResult\InlineQueryResultDocument;
use TgBotLib\Objects\Telegram\InlineQueryResult\InlineQueryResultGame;
use TgBotLib\Objects\Telegram\InlineQueryResult\InlineQueryResultGif;
use TgBotLib\Objects\Telegram\InlineQueryResult\InlineQueryResultLocation;
use TgBotLib\Objects\Telegram\InlineQueryResult\InlineQueryResultMpeg4Gif;
use TgBotLib\Objects\Telegram\InlineQueryResult\InlineQueryResultPhoto;
use TgBotLib\Objects\Telegram\InlineQueryResult\InlineQueryResultVenue;
use TgBotLib\Objects\Telegram\InlineQueryResult\InlineQueryResultVideo;
use TgBotLib\Objects\Telegram\InlineQueryResult\InlineQueryResultVoice;
use TgBotLib\Objects\Telegram\MenuButton;
use TgBotLib\Objects\Telegram\Message;
use TgBotLib\Objects\Telegram\Poll;
use TgBotLib\Objects\Telegram\SentWebAppMessage;
use TgBotLib\Objects\Telegram\Sticker;
use TgBotLib\Objects\Telegram\Update;
use TgBotLib\Objects\Telegram\User;
use TgBotLib\Objects\Telegram\UserProfilePhotos;
use TgBotLib\Objects\Telegram\WebhookInfo;
use TgBotLib\Objects\BotCommandScope;
use TgBotLib\Objects\BotDescription;
use TgBotLib\Objects\BotShortDescription;
use TgBotLib\Objects\Chat;
use TgBotLib\Objects\ChatAdministratorRights;
use TgBotLib\Objects\ChatInviteLink;
use TgBotLib\Objects\ChatMember;
use TgBotLib\Objects\File;
use TgBotLib\Objects\ForumTopic;
use TgBotLib\Objects\InlineQueryResult\InlineQueryResultArticle;
use TgBotLib\Objects\InlineQueryResult\InlineQueryResultAudio;
use TgBotLib\Objects\InlineQueryResult\InlineQueryResultContact;
use TgBotLib\Objects\InlineQueryResult\InlineQueryResultDocument;
use TgBotLib\Objects\InlineQueryResult\InlineQueryResultGame;
use TgBotLib\Objects\InlineQueryResult\InlineQueryResultGif;
use TgBotLib\Objects\InlineQueryResult\InlineQueryResultLocation;
use TgBotLib\Objects\InlineQueryResult\InlineQueryResultMpeg4Gif;
use TgBotLib\Objects\InlineQueryResult\InlineQueryResultPhoto;
use TgBotLib\Objects\InlineQueryResult\InlineQueryResultVenue;
use TgBotLib\Objects\InlineQueryResult\InlineQueryResultVideo;
use TgBotLib\Objects\InlineQueryResult\InlineQueryResultVoice;
use TgBotLib\Objects\MenuButton;
use TgBotLib\Objects\Message;
use TgBotLib\Objects\Poll;
use TgBotLib\Objects\SentWebAppMessage;
use TgBotLib\Objects\Sticker;
use TgBotLib\Objects\Update;
use TgBotLib\Objects\User;
use TgBotLib\Objects\UserProfilePhotos;
use TgBotLib\Objects\WebhookInfo;
class BotOld
{