├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── examples ├── DeleteChatPhoto.php ├── EditMessageLiveLocation.php ├── ExportChatInviteLink.php ├── ForwardMessage.php ├── GetChat.php ├── GetChatAdministrators.php ├── GetChatMembersCount.php ├── GetFile.php ├── GetMe.php ├── GetUpdates.php ├── GetUserProfilePhotos.php ├── KickChatMember.php ├── PromoteChatMember.php ├── RestrictChatMember.php ├── SendAnimation.php ├── SendAudio.php ├── SendChatAction.php ├── SendContact.php ├── SendDocument.php ├── SendLocation.php ├── SendMediaGroup.php ├── SendMessageWithInlineKeyboard.php ├── SendMessageWithKeyboard.php ├── SendMessageWithRemoveKeyboard.php ├── SendPhoto.php ├── SendPoll.php ├── SendVenue.php ├── SendVideo.php ├── SendVideoNote.php ├── SendVoice.php ├── SetChatDescription.php ├── SetChatPermissions.php ├── SetChatPhoto.php ├── SetChatTitle.php ├── StopMessageLiveLocation.php ├── UnbanChatMember.php ├── WebhookInfo.php ├── init.php └── resources │ ├── cat_need_chereshnya.mp3 │ ├── chereshnya.jpeg │ ├── chereshnya.mp4 │ ├── chereshnya.txt │ └── gifka.gif ├── phpunit.xml.dist ├── src └── SimpleTelegramBotClient │ ├── Builder │ ├── Action │ │ ├── AnswerCallbackQueryBuilder.php │ │ ├── DeleteChatPhotoBuilder.php │ │ ├── EditMessageLiveLocationBuilder.php │ │ ├── ExportChatInviteLinkBuilder.php │ │ ├── ForwardMessageBuilder.php │ │ ├── GetFileBuilder.php │ │ ├── GetUserProfilePhotosBuilder.php │ │ ├── KickChatMemberBuilder.php │ │ ├── PinChatMessageBuilder.php │ │ ├── PromoteChatMemberBuilder.php │ │ ├── RestrictChatMemberBuilder.php │ │ ├── SendAnimationBuilder.php │ │ ├── SendAudioBuilder.php │ │ ├── SendChatActionBuilder.php │ │ ├── SendContactBuilder.php │ │ ├── SendDocumentBuilder.php │ │ ├── SendLocationBuilder.php │ │ ├── SendMediaGroupBuilder.php │ │ ├── SendMessageBuilder.php │ │ ├── SendPhotoBuilder.php │ │ ├── SendPollBuilder.php │ │ ├── SendVenueBuilder.php │ │ ├── SendVideoBuilder.php │ │ ├── SendVideoNoteBuilder.php │ │ ├── SendVoiceBuilder.php │ │ ├── SetChatDescriptionBuilder.php │ │ ├── SetChatPermissionsBuilder.php │ │ ├── SetChatPhotoBuilder.php │ │ ├── SetChatTitleBuilder.php │ │ ├── StopMessageLiveLocationBuilder.php │ │ ├── UnbanChatMemberBuilder.php │ │ └── Webhook │ │ │ └── SetWebhookBuilder.php │ ├── Keyboard │ │ ├── ArrayKeyboardButtonBuilder.php │ │ ├── InlineKeyboardButtonBuilder.php │ │ ├── InlineKeyboardMarkupBuilder.php │ │ ├── KeyboardButtonBuilder.php │ │ ├── ReplyKeyboardMarkupBuilder.php │ │ └── ReplyKeyboardRemoveBuilder.php │ └── Type │ │ ├── ChatPermissionsBuilder.php │ │ ├── InputMediaPhotoBuilder.php │ │ └── InputMediaVideoBuilder.php │ ├── Config.php │ ├── Constant │ ├── ChatAction.php │ └── ParseMode.php │ ├── Dto │ ├── Action │ │ ├── ActionInterface.php │ │ ├── AnswerCallbackQuery.php │ │ ├── DeleteChatPhoto.php │ │ ├── DeleteChatStickerSet.php │ │ ├── EditMessageLiveLocation.php │ │ ├── ExportChatInviteLink.php │ │ ├── ForwardMessage.php │ │ ├── GetChat.php │ │ ├── GetChatAdministrators.php │ │ ├── GetChatMembersCount.php │ │ ├── GetFile.php │ │ ├── GetUserProfilePhotos.php │ │ ├── KickChatMember.php │ │ ├── LeaveChat.php │ │ ├── PinChatMessage.php │ │ ├── PromoteChatMember.php │ │ ├── RestrictChatMember.php │ │ ├── SendAnimation.php │ │ ├── SendAudio.php │ │ ├── SendChatAction.php │ │ ├── SendContact.php │ │ ├── SendDocument.php │ │ ├── SendLocation.php │ │ ├── SendMediaGroup.php │ │ ├── SendMessage.php │ │ ├── SendPhoto.php │ │ ├── SendPoll.php │ │ ├── SendVenue.php │ │ ├── SendVideo.php │ │ ├── SendVideoNote.php │ │ ├── SendVoice.php │ │ ├── SetChatDescription.php │ │ ├── SetChatPermissions.php │ │ ├── SetChatPhoto.php │ │ ├── SetChatStickerSet.php │ │ ├── SetChatTitle.php │ │ ├── StopMessageLiveLocation.php │ │ ├── UnbanChatMember.php │ │ ├── UnpinChatMessage.php │ │ └── Webhook │ │ │ └── SetWebhook.php │ ├── Keyboard │ │ ├── InlineKeyboardButton.php │ │ ├── InlineKeyboardMarkup.php │ │ ├── KeyboardButton.php │ │ ├── ReplyKeyboardMarkup.php │ │ └── ReplyKeyboardRemove.php │ ├── Response │ │ ├── ChatInviteLinkResponse.php │ │ ├── Error.php │ │ ├── GetChatAdministratorsResponse.php │ │ ├── GetChatResponse.php │ │ ├── GetFileResponse.php │ │ ├── GetMeResponse.php │ │ ├── GetUserProfilePhotosResponse.php │ │ ├── GetWebhookInfoResponse.php │ │ ├── IntResultResponse.php │ │ ├── Response.php │ │ ├── SendMediaGroupResponse.php │ │ ├── SendMessageResponse.php │ │ └── SimpleResponse.php │ └── Type │ │ ├── Animation.php │ │ ├── Audio.php │ │ ├── CallbackGame.php │ │ ├── Chat.php │ │ ├── ChatMember.php │ │ ├── ChatPermissions.php │ │ ├── ChatPhoto.php │ │ ├── Contact.php │ │ ├── Document.php │ │ ├── File.php │ │ ├── ForceReply.php │ │ ├── Game.php │ │ ├── InputMediaPhoto.php │ │ ├── InputMediaVideo.php │ │ ├── Invoice.php │ │ ├── Location.php │ │ ├── LoginUrl.php │ │ ├── MaskPosition.php │ │ ├── Message.php │ │ ├── MessageEntity.php │ │ ├── PassportData.php │ │ ├── PhotoSize.php │ │ ├── Poll.php │ │ ├── PollOption.php │ │ ├── Sticker.php │ │ ├── SuccessfulPayment.php │ │ ├── Update.php │ │ ├── User.php │ │ ├── UserProfilePhotos.php │ │ ├── Venue.php │ │ ├── Video.php │ │ ├── VideoNote.php │ │ ├── Voice.php │ │ └── WebhookInfo.php │ ├── Exception │ ├── BadMethodCallException.php │ └── ClientException.php │ ├── ResponseFactory.php │ ├── TelegramService.php │ └── TelegramServiceFactory.php └── tests ├── SimpleTelegramBotClient └── TelegramServiceTest.php └── resources ├── error.json ├── export_chat_invite_link.json ├── get_chat.json ├── get_chat_administrators.json ├── get_file.json ├── get_me.json ├── get_updates.json ├── get_user_profile_photos.json ├── get_webhook_info.json ├── int_response.json ├── send_contact.json ├── send_location.json ├── send_media_group.json ├── send_message_inline_result.json ├── send_message_keyboard.json ├── send_poll.json ├── send_venue.json ├── send_video_note.json ├── send_voice.json ├── simple_response.json ├── stop_message_live_location.json └── stub_file /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/composer.json -------------------------------------------------------------------------------- /examples/DeleteChatPhoto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/DeleteChatPhoto.php -------------------------------------------------------------------------------- /examples/EditMessageLiveLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/EditMessageLiveLocation.php -------------------------------------------------------------------------------- /examples/ExportChatInviteLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/ExportChatInviteLink.php -------------------------------------------------------------------------------- /examples/ForwardMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/ForwardMessage.php -------------------------------------------------------------------------------- /examples/GetChat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/GetChat.php -------------------------------------------------------------------------------- /examples/GetChatAdministrators.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/GetChatAdministrators.php -------------------------------------------------------------------------------- /examples/GetChatMembersCount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/GetChatMembersCount.php -------------------------------------------------------------------------------- /examples/GetFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/GetFile.php -------------------------------------------------------------------------------- /examples/GetMe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/GetMe.php -------------------------------------------------------------------------------- /examples/GetUpdates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/GetUpdates.php -------------------------------------------------------------------------------- /examples/GetUserProfilePhotos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/GetUserProfilePhotos.php -------------------------------------------------------------------------------- /examples/KickChatMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/KickChatMember.php -------------------------------------------------------------------------------- /examples/PromoteChatMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/PromoteChatMember.php -------------------------------------------------------------------------------- /examples/RestrictChatMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/RestrictChatMember.php -------------------------------------------------------------------------------- /examples/SendAnimation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/SendAnimation.php -------------------------------------------------------------------------------- /examples/SendAudio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/SendAudio.php -------------------------------------------------------------------------------- /examples/SendChatAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/SendChatAction.php -------------------------------------------------------------------------------- /examples/SendContact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/SendContact.php -------------------------------------------------------------------------------- /examples/SendDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/SendDocument.php -------------------------------------------------------------------------------- /examples/SendLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/SendLocation.php -------------------------------------------------------------------------------- /examples/SendMediaGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/SendMediaGroup.php -------------------------------------------------------------------------------- /examples/SendMessageWithInlineKeyboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/SendMessageWithInlineKeyboard.php -------------------------------------------------------------------------------- /examples/SendMessageWithKeyboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/SendMessageWithKeyboard.php -------------------------------------------------------------------------------- /examples/SendMessageWithRemoveKeyboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/SendMessageWithRemoveKeyboard.php -------------------------------------------------------------------------------- /examples/SendPhoto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/SendPhoto.php -------------------------------------------------------------------------------- /examples/SendPoll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/SendPoll.php -------------------------------------------------------------------------------- /examples/SendVenue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/SendVenue.php -------------------------------------------------------------------------------- /examples/SendVideo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/SendVideo.php -------------------------------------------------------------------------------- /examples/SendVideoNote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/SendVideoNote.php -------------------------------------------------------------------------------- /examples/SendVoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/SendVoice.php -------------------------------------------------------------------------------- /examples/SetChatDescription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/SetChatDescription.php -------------------------------------------------------------------------------- /examples/SetChatPermissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/SetChatPermissions.php -------------------------------------------------------------------------------- /examples/SetChatPhoto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/SetChatPhoto.php -------------------------------------------------------------------------------- /examples/SetChatTitle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/SetChatTitle.php -------------------------------------------------------------------------------- /examples/StopMessageLiveLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/StopMessageLiveLocation.php -------------------------------------------------------------------------------- /examples/UnbanChatMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/UnbanChatMember.php -------------------------------------------------------------------------------- /examples/WebhookInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/WebhookInfo.php -------------------------------------------------------------------------------- /examples/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/init.php -------------------------------------------------------------------------------- /examples/resources/cat_need_chereshnya.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/resources/cat_need_chereshnya.mp3 -------------------------------------------------------------------------------- /examples/resources/chereshnya.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/resources/chereshnya.jpeg -------------------------------------------------------------------------------- /examples/resources/chereshnya.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/resources/chereshnya.mp4 -------------------------------------------------------------------------------- /examples/resources/chereshnya.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/resources/chereshnya.txt -------------------------------------------------------------------------------- /examples/resources/gifka.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/examples/resources/gifka.gif -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/AnswerCallbackQueryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/AnswerCallbackQueryBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/DeleteChatPhotoBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/DeleteChatPhotoBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/EditMessageLiveLocationBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/EditMessageLiveLocationBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/ExportChatInviteLinkBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/ExportChatInviteLinkBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/ForwardMessageBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/ForwardMessageBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/GetFileBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/GetFileBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/GetUserProfilePhotosBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/GetUserProfilePhotosBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/KickChatMemberBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/KickChatMemberBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/PinChatMessageBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/PinChatMessageBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/PromoteChatMemberBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/PromoteChatMemberBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/RestrictChatMemberBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/RestrictChatMemberBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/SendAnimationBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/SendAnimationBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/SendAudioBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/SendAudioBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/SendChatActionBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/SendChatActionBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/SendContactBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/SendContactBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/SendDocumentBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/SendDocumentBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/SendLocationBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/SendLocationBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/SendMediaGroupBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/SendMediaGroupBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/SendMessageBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/SendMessageBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/SendPhotoBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/SendPhotoBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/SendPollBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/SendPollBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/SendVenueBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/SendVenueBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/SendVideoBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/SendVideoBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/SendVideoNoteBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/SendVideoNoteBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/SendVoiceBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/SendVoiceBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/SetChatDescriptionBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/SetChatDescriptionBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/SetChatPermissionsBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/SetChatPermissionsBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/SetChatPhotoBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/SetChatPhotoBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/SetChatTitleBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/SetChatTitleBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/StopMessageLiveLocationBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/StopMessageLiveLocationBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/UnbanChatMemberBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/UnbanChatMemberBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Action/Webhook/SetWebhookBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Action/Webhook/SetWebhookBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Keyboard/ArrayKeyboardButtonBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Keyboard/ArrayKeyboardButtonBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Keyboard/InlineKeyboardButtonBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Keyboard/InlineKeyboardButtonBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Keyboard/InlineKeyboardMarkupBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Keyboard/InlineKeyboardMarkupBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Keyboard/KeyboardButtonBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Keyboard/KeyboardButtonBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Keyboard/ReplyKeyboardMarkupBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Keyboard/ReplyKeyboardMarkupBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Keyboard/ReplyKeyboardRemoveBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Keyboard/ReplyKeyboardRemoveBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Type/ChatPermissionsBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Type/ChatPermissionsBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Type/InputMediaPhotoBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Type/InputMediaPhotoBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Builder/Type/InputMediaVideoBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Builder/Type/InputMediaVideoBuilder.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Config.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Constant/ChatAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Constant/ChatAction.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Constant/ParseMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Constant/ParseMode.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/ActionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/ActionInterface.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/AnswerCallbackQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/AnswerCallbackQuery.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/DeleteChatPhoto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/DeleteChatPhoto.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/DeleteChatStickerSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/DeleteChatStickerSet.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/EditMessageLiveLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/EditMessageLiveLocation.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/ExportChatInviteLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/ExportChatInviteLink.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/ForwardMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/ForwardMessage.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/GetChat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/GetChat.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/GetChatAdministrators.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/GetChatAdministrators.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/GetChatMembersCount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/GetChatMembersCount.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/GetFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/GetFile.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/GetUserProfilePhotos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/GetUserProfilePhotos.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/KickChatMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/KickChatMember.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/LeaveChat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/LeaveChat.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/PinChatMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/PinChatMessage.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/PromoteChatMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/PromoteChatMember.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/RestrictChatMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/RestrictChatMember.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/SendAnimation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/SendAnimation.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/SendAudio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/SendAudio.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/SendChatAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/SendChatAction.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/SendContact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/SendContact.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/SendDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/SendDocument.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/SendLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/SendLocation.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/SendMediaGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/SendMediaGroup.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/SendMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/SendMessage.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/SendPhoto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/SendPhoto.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/SendPoll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/SendPoll.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/SendVenue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/SendVenue.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/SendVideo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/SendVideo.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/SendVideoNote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/SendVideoNote.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/SendVoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/SendVoice.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/SetChatDescription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/SetChatDescription.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/SetChatPermissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/SetChatPermissions.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/SetChatPhoto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/SetChatPhoto.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/SetChatStickerSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/SetChatStickerSet.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/SetChatTitle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/SetChatTitle.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/StopMessageLiveLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/StopMessageLiveLocation.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/UnbanChatMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/UnbanChatMember.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/UnpinChatMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/UnpinChatMessage.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Action/Webhook/SetWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Action/Webhook/SetWebhook.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Keyboard/InlineKeyboardButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Keyboard/InlineKeyboardButton.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Keyboard/InlineKeyboardMarkup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Keyboard/InlineKeyboardMarkup.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Keyboard/KeyboardButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Keyboard/KeyboardButton.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Keyboard/ReplyKeyboardMarkup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Keyboard/ReplyKeyboardMarkup.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Keyboard/ReplyKeyboardRemove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Keyboard/ReplyKeyboardRemove.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Response/ChatInviteLinkResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Response/ChatInviteLinkResponse.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Response/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Response/Error.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Response/GetChatAdministratorsResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Response/GetChatAdministratorsResponse.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Response/GetChatResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Response/GetChatResponse.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Response/GetFileResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Response/GetFileResponse.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Response/GetMeResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Response/GetMeResponse.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Response/GetUserProfilePhotosResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Response/GetUserProfilePhotosResponse.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Response/GetWebhookInfoResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Response/GetWebhookInfoResponse.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Response/IntResultResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Response/IntResultResponse.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Response/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Response/Response.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Response/SendMediaGroupResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Response/SendMediaGroupResponse.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Response/SendMessageResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Response/SendMessageResponse.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Response/SimpleResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Response/SimpleResponse.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Type/Animation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Type/Animation.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Type/Audio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcorter/SimpleTelegramBotClient/HEAD/src/SimpleTelegramBotClient/Dto/Type/Audio.php -------------------------------------------------------------------------------- /src/SimpleTelegramBotClient/Dto/Type/CallbackGame.php: -------------------------------------------------------------------------------- 1 |