├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── bin ├── composer.sh └── run-tests.sh ├── composer.json ├── composer.lock ├── docker-compose.yml ├── docker ├── php70 │ └── Dockerfile ├── php71 │ └── Dockerfile ├── php72 │ └── Dockerfile ├── php73 │ └── Dockerfile └── php74 │ └── Dockerfile ├── examples ├── 00.send-message-amp.php ├── 00.send-message.php ├── 01.blocking-get-me.php ├── 02.send-message-with-custom-dns.php ├── README.md ├── basics.php ├── binary-test-data │ ├── ICQ-uh-oh.mp3 │ ├── demo-photo.jpg │ ├── demo-video.mp4 │ ├── demo-voice.ogg │ ├── futurama-amys-obscene-tattoo.jpg │ ├── futurama-seymour.jpg │ ├── logo-php7-telegram-bot-api-small.png │ ├── logo-php7-telegram-bot-api-thumbnail.jpg │ └── logo-php7-telegram-bot-api.png ├── conf.php-sample ├── get-chat-member.php ├── get-chat-members-count.php ├── get-file.php ├── get-me.php ├── get-my-commands-scope.php ├── get-my-commands.php ├── get-updates-and-decode-entities.php ├── get-updates.php ├── get-user-profile-photos.php ├── get-webhookinfo.php ├── send-audio.php ├── send-chat-action.php ├── send-contact.php ├── send-document-custom-name.php ├── send-document.php ├── send-invoice.php ├── send-location.php ├── send-location.png ├── send-media-group.php ├── send-message-and-edit.php ├── send-message-with-inlinekeyboard.php ├── send-message-with-inlinekeyboard.png ├── send-message-with-keyboard-options.php ├── send-message-with-keyboard-options.png ├── send-message.php ├── send-photo-amp.php ├── send-photo.php ├── send-photo.png ├── send-sticker.php ├── send-video.php ├── send-video.png ├── send-voice.php ├── send-voice.png ├── set-my-commands-scope.php ├── set-my-commands.php ├── set-webhook.php ├── standalone-example-with-logger.php └── standalone-example.php └── src ├── Abstracts ├── CustomType.php ├── KeyboardMethods.php ├── TelegramMethods.php ├── TelegramTypes.php └── TraversableCustomType.php ├── Exceptions ├── ClientException.php ├── FileNotReadable.php ├── InvalidMediaType.php ├── InvalidResultType.php └── MissingMandatoryField.php ├── HttpClientRequestHandler.php ├── HttpClientRequestHandlerAmp.php ├── Interfaces └── TelegramMethodDefinitions.php ├── InternalFunctionality ├── PostOptionsConstructor.php ├── TelegramDocument.php └── TelegramResponse.php ├── RequestHandlerInterface.php ├── Telegram ├── Methods │ ├── AddStickerToSet.php │ ├── AnswerCallbackQuery.php │ ├── AnswerInlineQuery.php │ ├── AnswerPreCheckoutQuery.php │ ├── AnswerShippingQuery.php │ ├── Close.php │ ├── CreateNewStickerSet.php │ ├── DeleteChatPhoto.php │ ├── DeleteChatStickerSet.php │ ├── DeleteMessage.php │ ├── DeleteStickerFromSet.php │ ├── DeleteWebhook.php │ ├── EditMessageCaption.php │ ├── EditMessageLiveLocation.php │ ├── EditMessageMedia.php │ ├── EditMessageReplyMarkup.php │ ├── EditMessageText.php │ ├── ExportChatInviteLink.php │ ├── ForwardMessage.php │ ├── GetChat.php │ ├── GetChatAdministrators.php │ ├── GetChatMember.php │ ├── GetChatMembersCount.php │ ├── GetFile.php │ ├── GetGameScore.php │ ├── GetMe.php │ ├── GetMyCommands.php │ ├── GetStickerSet.php │ ├── GetUpdates.php │ ├── GetUserProfilePhotos.php │ ├── GetWebhookInfo.php │ ├── KickChatMember.php │ ├── LeaveChat.php │ ├── LogOut.php │ ├── PinChatMessage.php │ ├── PromoteChatMember.php │ ├── RestrictChatMember.php │ ├── SendAnimation.php │ ├── SendAudio.php │ ├── SendChatAction.php │ ├── SendContact.php │ ├── SendDice.php │ ├── SendDocument.php │ ├── SendGame.php │ ├── SendInvoice.php │ ├── SendLocation.php │ ├── SendMediaGroup.php │ ├── SendMessage.php │ ├── SendPhoto.php │ ├── SendPoll.php │ ├── SendSticker.php │ ├── SendVenue.php │ ├── SendVideo.php │ ├── SendVideoNote.php │ ├── SendVoice.php │ ├── SetChatAdministratorCustomTitle.php │ ├── SetChatDescription.php │ ├── SetChatPermissions.php │ ├── SetChatPhoto.php │ ├── SetChatStickerSet.php │ ├── SetChatTitle.php │ ├── SetGameScore.php │ ├── SetMyCommands.php │ ├── SetPassportDataErrors.php │ ├── SetStickerPositionInSet.php │ ├── SetStickerSetThumb.php │ ├── SetStickerSetThumbnail.php │ ├── SetWebhook.php │ ├── StopMessageLiveLocation.php │ ├── StopPoll.php │ ├── UnbanChatMember.php │ ├── UnpinAllChatMessages.php │ ├── UnpinChatMessage.php │ └── UploadStickerFile.php └── Types │ ├── Animation.php │ ├── Audio.php │ ├── BotCommand.php │ ├── BotCommandScope.php │ ├── CallbackGame.php │ ├── CallbackQuery.php │ ├── Chat.php │ ├── ChatInviteLink.php │ ├── ChatJoinRequest.php │ ├── ChatLocation.php │ ├── ChatMember.php │ ├── ChatMemberUpdated.php │ ├── ChatPermissions.php │ ├── ChatPhoto.php │ ├── Contact.php │ ├── Custom │ ├── BotCommandArray.php │ ├── ChatMembersArray.php │ ├── GameHighScoreArray.php │ ├── InlineKeyboardButtonArray.php │ ├── InputFile.php │ ├── KeyboardButtonArray.php │ ├── MessageArray.php │ ├── MessageEntityArray.php │ ├── PassportFileArray.php │ ├── PhotoSizeArray.php │ ├── PollOptionArray.php │ ├── ResultArray.php │ ├── ResultBoolean.php │ ├── ResultInt.php │ ├── ResultNull.php │ ├── ResultString.php │ ├── StickerSetArray.php │ ├── UnsuccessfulRequest.php │ ├── UpdatesArray.php │ ├── UserArray.php │ └── UserProfilePhotosArray.php │ ├── Dice.php │ ├── Document.php │ ├── File.php │ ├── ForceReply.php │ ├── ForumTopicClosed.php │ ├── ForumTopicCreated.php │ ├── ForumTopicEdited.php │ ├── ForumTopicReopened.php │ ├── Game.php │ ├── GameHighScore.php │ ├── Inline │ ├── ChosenResult.php │ ├── Keyboard │ │ ├── Button.php │ │ └── Markup.php │ ├── Query.php │ └── Query │ │ ├── Result.php │ │ └── Result │ │ ├── Article.php │ │ ├── Audio.php │ │ ├── Cached │ │ ├── Audio.php │ │ ├── Document.php │ │ ├── Gif.php │ │ ├── Mpeg4Gif.php │ │ ├── Photo.php │ │ ├── Sticker.php │ │ ├── Video.php │ │ └── Voice.php │ │ ├── Contact.php │ │ ├── Document.php │ │ ├── Game.php │ │ ├── Gif.php │ │ ├── Location.php │ │ ├── Mpeg4Gif.php │ │ ├── Photo.php │ │ ├── Venue.php │ │ ├── Video.php │ │ └── Voice.php │ ├── InputMedia.php │ ├── InputMedia │ ├── Animation.php │ ├── Audio.php │ ├── Document.php │ ├── Photo.php │ └── Video.php │ ├── InputMessageContent.php │ ├── InputMessageContent │ ├── Contact.php │ ├── Location.php │ ├── Text.php │ └── Venue.php │ ├── Invoice.php │ ├── KeyboardButton.php │ ├── KeyboardButtonPollType.php │ ├── LabeledPrice.php │ ├── Location.php │ ├── LoginUrl.php │ ├── MaskPosition.php │ ├── Message.php │ ├── MessageEntity.php │ ├── OrderInfo.php │ ├── Passport │ ├── ElementError │ │ ├── DataField.php │ │ ├── FrontSide.php │ │ ├── ReverseSide.php │ │ └── Selfie.php │ ├── EncryptedCredentials.php │ ├── EncryptedPassportElement.php │ ├── PassportData.php │ ├── PassportElementError.php │ └── PassportFile.php │ ├── PhotoSize.php │ ├── Poll.php │ ├── PollAnswer.php │ ├── PollOption.php │ ├── PreCheckoutQuery.php │ ├── ProximityAlertTriggered.php │ ├── ReplyKeyboardHide.php │ ├── ReplyKeyboardMarkup.php │ ├── ReplyKeyboardRemove.php │ ├── ResponseParameters.php │ ├── ShippingAddress.php │ ├── ShippingOption.php │ ├── ShippingQuery.php │ ├── Sticker.php │ ├── StickerSet.php │ ├── SuccessfulPayment.php │ ├── Update.php │ ├── User.php │ ├── UserProfilePhotos.php │ ├── Venue.php │ ├── Video.php │ ├── VideoNote.php │ ├── Voice.php │ └── WebhookInfo.php └── TgLog.php /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/README.md -------------------------------------------------------------------------------- /bin/composer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/bin/composer.sh -------------------------------------------------------------------------------- /bin/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/bin/run-tests.sh -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/composer.lock -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/php70/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/docker/php70/Dockerfile -------------------------------------------------------------------------------- /docker/php71/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/docker/php71/Dockerfile -------------------------------------------------------------------------------- /docker/php72/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/docker/php72/Dockerfile -------------------------------------------------------------------------------- /docker/php73/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/docker/php73/Dockerfile -------------------------------------------------------------------------------- /docker/php74/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/docker/php74/Dockerfile -------------------------------------------------------------------------------- /examples/00.send-message-amp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/00.send-message-amp.php -------------------------------------------------------------------------------- /examples/00.send-message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/00.send-message.php -------------------------------------------------------------------------------- /examples/01.blocking-get-me.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/01.blocking-get-me.php -------------------------------------------------------------------------------- /examples/02.send-message-with-custom-dns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/02.send-message-with-custom-dns.php -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/basics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/basics.php -------------------------------------------------------------------------------- /examples/binary-test-data/ICQ-uh-oh.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/binary-test-data/ICQ-uh-oh.mp3 -------------------------------------------------------------------------------- /examples/binary-test-data/demo-photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/binary-test-data/demo-photo.jpg -------------------------------------------------------------------------------- /examples/binary-test-data/demo-video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/binary-test-data/demo-video.mp4 -------------------------------------------------------------------------------- /examples/binary-test-data/demo-voice.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/binary-test-data/demo-voice.ogg -------------------------------------------------------------------------------- /examples/binary-test-data/futurama-amys-obscene-tattoo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/binary-test-data/futurama-amys-obscene-tattoo.jpg -------------------------------------------------------------------------------- /examples/binary-test-data/futurama-seymour.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/binary-test-data/futurama-seymour.jpg -------------------------------------------------------------------------------- /examples/binary-test-data/logo-php7-telegram-bot-api-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/binary-test-data/logo-php7-telegram-bot-api-small.png -------------------------------------------------------------------------------- /examples/binary-test-data/logo-php7-telegram-bot-api-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/binary-test-data/logo-php7-telegram-bot-api-thumbnail.jpg -------------------------------------------------------------------------------- /examples/binary-test-data/logo-php7-telegram-bot-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/binary-test-data/logo-php7-telegram-bot-api.png -------------------------------------------------------------------------------- /examples/conf.php-sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/conf.php-sample -------------------------------------------------------------------------------- /examples/get-chat-member.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/get-chat-member.php -------------------------------------------------------------------------------- /examples/get-chat-members-count.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/get-chat-members-count.php -------------------------------------------------------------------------------- /examples/get-file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/get-file.php -------------------------------------------------------------------------------- /examples/get-me.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/get-me.php -------------------------------------------------------------------------------- /examples/get-my-commands-scope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/get-my-commands-scope.php -------------------------------------------------------------------------------- /examples/get-my-commands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/get-my-commands.php -------------------------------------------------------------------------------- /examples/get-updates-and-decode-entities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/get-updates-and-decode-entities.php -------------------------------------------------------------------------------- /examples/get-updates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/get-updates.php -------------------------------------------------------------------------------- /examples/get-user-profile-photos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/get-user-profile-photos.php -------------------------------------------------------------------------------- /examples/get-webhookinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/get-webhookinfo.php -------------------------------------------------------------------------------- /examples/send-audio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/send-audio.php -------------------------------------------------------------------------------- /examples/send-chat-action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/send-chat-action.php -------------------------------------------------------------------------------- /examples/send-contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/send-contact.php -------------------------------------------------------------------------------- /examples/send-document-custom-name.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/send-document-custom-name.php -------------------------------------------------------------------------------- /examples/send-document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/send-document.php -------------------------------------------------------------------------------- /examples/send-invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/send-invoice.php -------------------------------------------------------------------------------- /examples/send-location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/send-location.php -------------------------------------------------------------------------------- /examples/send-location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/send-location.png -------------------------------------------------------------------------------- /examples/send-media-group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/send-media-group.php -------------------------------------------------------------------------------- /examples/send-message-and-edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/send-message-and-edit.php -------------------------------------------------------------------------------- /examples/send-message-with-inlinekeyboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/send-message-with-inlinekeyboard.php -------------------------------------------------------------------------------- /examples/send-message-with-inlinekeyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/send-message-with-inlinekeyboard.png -------------------------------------------------------------------------------- /examples/send-message-with-keyboard-options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/send-message-with-keyboard-options.php -------------------------------------------------------------------------------- /examples/send-message-with-keyboard-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/send-message-with-keyboard-options.png -------------------------------------------------------------------------------- /examples/send-message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/send-message.php -------------------------------------------------------------------------------- /examples/send-photo-amp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/send-photo-amp.php -------------------------------------------------------------------------------- /examples/send-photo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/send-photo.php -------------------------------------------------------------------------------- /examples/send-photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/send-photo.png -------------------------------------------------------------------------------- /examples/send-sticker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/send-sticker.php -------------------------------------------------------------------------------- /examples/send-video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/send-video.php -------------------------------------------------------------------------------- /examples/send-video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/send-video.png -------------------------------------------------------------------------------- /examples/send-voice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/send-voice.php -------------------------------------------------------------------------------- /examples/send-voice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/send-voice.png -------------------------------------------------------------------------------- /examples/set-my-commands-scope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/set-my-commands-scope.php -------------------------------------------------------------------------------- /examples/set-my-commands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/set-my-commands.php -------------------------------------------------------------------------------- /examples/set-webhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/set-webhook.php -------------------------------------------------------------------------------- /examples/standalone-example-with-logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/standalone-example-with-logger.php -------------------------------------------------------------------------------- /examples/standalone-example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/examples/standalone-example.php -------------------------------------------------------------------------------- /src/Abstracts/CustomType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Abstracts/CustomType.php -------------------------------------------------------------------------------- /src/Abstracts/KeyboardMethods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Abstracts/KeyboardMethods.php -------------------------------------------------------------------------------- /src/Abstracts/TelegramMethods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Abstracts/TelegramMethods.php -------------------------------------------------------------------------------- /src/Abstracts/TelegramTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Abstracts/TelegramTypes.php -------------------------------------------------------------------------------- /src/Abstracts/TraversableCustomType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Abstracts/TraversableCustomType.php -------------------------------------------------------------------------------- /src/Exceptions/ClientException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Exceptions/ClientException.php -------------------------------------------------------------------------------- /src/Exceptions/FileNotReadable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Exceptions/FileNotReadable.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidMediaType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Exceptions/InvalidMediaType.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidResultType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Exceptions/InvalidResultType.php -------------------------------------------------------------------------------- /src/Exceptions/MissingMandatoryField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Exceptions/MissingMandatoryField.php -------------------------------------------------------------------------------- /src/HttpClientRequestHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/HttpClientRequestHandler.php -------------------------------------------------------------------------------- /src/HttpClientRequestHandlerAmp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/HttpClientRequestHandlerAmp.php -------------------------------------------------------------------------------- /src/Interfaces/TelegramMethodDefinitions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Interfaces/TelegramMethodDefinitions.php -------------------------------------------------------------------------------- /src/InternalFunctionality/PostOptionsConstructor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/InternalFunctionality/PostOptionsConstructor.php -------------------------------------------------------------------------------- /src/InternalFunctionality/TelegramDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/InternalFunctionality/TelegramDocument.php -------------------------------------------------------------------------------- /src/InternalFunctionality/TelegramResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/InternalFunctionality/TelegramResponse.php -------------------------------------------------------------------------------- /src/RequestHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/RequestHandlerInterface.php -------------------------------------------------------------------------------- /src/Telegram/Methods/AddStickerToSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/AddStickerToSet.php -------------------------------------------------------------------------------- /src/Telegram/Methods/AnswerCallbackQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/AnswerCallbackQuery.php -------------------------------------------------------------------------------- /src/Telegram/Methods/AnswerInlineQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/AnswerInlineQuery.php -------------------------------------------------------------------------------- /src/Telegram/Methods/AnswerPreCheckoutQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/AnswerPreCheckoutQuery.php -------------------------------------------------------------------------------- /src/Telegram/Methods/AnswerShippingQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/AnswerShippingQuery.php -------------------------------------------------------------------------------- /src/Telegram/Methods/Close.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/Close.php -------------------------------------------------------------------------------- /src/Telegram/Methods/CreateNewStickerSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/CreateNewStickerSet.php -------------------------------------------------------------------------------- /src/Telegram/Methods/DeleteChatPhoto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/DeleteChatPhoto.php -------------------------------------------------------------------------------- /src/Telegram/Methods/DeleteChatStickerSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/DeleteChatStickerSet.php -------------------------------------------------------------------------------- /src/Telegram/Methods/DeleteMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/DeleteMessage.php -------------------------------------------------------------------------------- /src/Telegram/Methods/DeleteStickerFromSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/DeleteStickerFromSet.php -------------------------------------------------------------------------------- /src/Telegram/Methods/DeleteWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/DeleteWebhook.php -------------------------------------------------------------------------------- /src/Telegram/Methods/EditMessageCaption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/EditMessageCaption.php -------------------------------------------------------------------------------- /src/Telegram/Methods/EditMessageLiveLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/EditMessageLiveLocation.php -------------------------------------------------------------------------------- /src/Telegram/Methods/EditMessageMedia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/EditMessageMedia.php -------------------------------------------------------------------------------- /src/Telegram/Methods/EditMessageReplyMarkup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/EditMessageReplyMarkup.php -------------------------------------------------------------------------------- /src/Telegram/Methods/EditMessageText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/EditMessageText.php -------------------------------------------------------------------------------- /src/Telegram/Methods/ExportChatInviteLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/ExportChatInviteLink.php -------------------------------------------------------------------------------- /src/Telegram/Methods/ForwardMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/ForwardMessage.php -------------------------------------------------------------------------------- /src/Telegram/Methods/GetChat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/GetChat.php -------------------------------------------------------------------------------- /src/Telegram/Methods/GetChatAdministrators.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/GetChatAdministrators.php -------------------------------------------------------------------------------- /src/Telegram/Methods/GetChatMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/GetChatMember.php -------------------------------------------------------------------------------- /src/Telegram/Methods/GetChatMembersCount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/GetChatMembersCount.php -------------------------------------------------------------------------------- /src/Telegram/Methods/GetFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/GetFile.php -------------------------------------------------------------------------------- /src/Telegram/Methods/GetGameScore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/GetGameScore.php -------------------------------------------------------------------------------- /src/Telegram/Methods/GetMe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/GetMe.php -------------------------------------------------------------------------------- /src/Telegram/Methods/GetMyCommands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/GetMyCommands.php -------------------------------------------------------------------------------- /src/Telegram/Methods/GetStickerSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/GetStickerSet.php -------------------------------------------------------------------------------- /src/Telegram/Methods/GetUpdates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/GetUpdates.php -------------------------------------------------------------------------------- /src/Telegram/Methods/GetUserProfilePhotos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/GetUserProfilePhotos.php -------------------------------------------------------------------------------- /src/Telegram/Methods/GetWebhookInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/GetWebhookInfo.php -------------------------------------------------------------------------------- /src/Telegram/Methods/KickChatMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/KickChatMember.php -------------------------------------------------------------------------------- /src/Telegram/Methods/LeaveChat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/LeaveChat.php -------------------------------------------------------------------------------- /src/Telegram/Methods/LogOut.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/LogOut.php -------------------------------------------------------------------------------- /src/Telegram/Methods/PinChatMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/PinChatMessage.php -------------------------------------------------------------------------------- /src/Telegram/Methods/PromoteChatMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/PromoteChatMember.php -------------------------------------------------------------------------------- /src/Telegram/Methods/RestrictChatMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/RestrictChatMember.php -------------------------------------------------------------------------------- /src/Telegram/Methods/SendAnimation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/SendAnimation.php -------------------------------------------------------------------------------- /src/Telegram/Methods/SendAudio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/SendAudio.php -------------------------------------------------------------------------------- /src/Telegram/Methods/SendChatAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/SendChatAction.php -------------------------------------------------------------------------------- /src/Telegram/Methods/SendContact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/SendContact.php -------------------------------------------------------------------------------- /src/Telegram/Methods/SendDice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/SendDice.php -------------------------------------------------------------------------------- /src/Telegram/Methods/SendDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/SendDocument.php -------------------------------------------------------------------------------- /src/Telegram/Methods/SendGame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/SendGame.php -------------------------------------------------------------------------------- /src/Telegram/Methods/SendInvoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/SendInvoice.php -------------------------------------------------------------------------------- /src/Telegram/Methods/SendLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/SendLocation.php -------------------------------------------------------------------------------- /src/Telegram/Methods/SendMediaGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/SendMediaGroup.php -------------------------------------------------------------------------------- /src/Telegram/Methods/SendMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/SendMessage.php -------------------------------------------------------------------------------- /src/Telegram/Methods/SendPhoto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/SendPhoto.php -------------------------------------------------------------------------------- /src/Telegram/Methods/SendPoll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/SendPoll.php -------------------------------------------------------------------------------- /src/Telegram/Methods/SendSticker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/SendSticker.php -------------------------------------------------------------------------------- /src/Telegram/Methods/SendVenue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/SendVenue.php -------------------------------------------------------------------------------- /src/Telegram/Methods/SendVideo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/SendVideo.php -------------------------------------------------------------------------------- /src/Telegram/Methods/SendVideoNote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/SendVideoNote.php -------------------------------------------------------------------------------- /src/Telegram/Methods/SendVoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/SendVoice.php -------------------------------------------------------------------------------- /src/Telegram/Methods/SetChatAdministratorCustomTitle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/SetChatAdministratorCustomTitle.php -------------------------------------------------------------------------------- /src/Telegram/Methods/SetChatDescription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/SetChatDescription.php -------------------------------------------------------------------------------- /src/Telegram/Methods/SetChatPermissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/SetChatPermissions.php -------------------------------------------------------------------------------- /src/Telegram/Methods/SetChatPhoto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/SetChatPhoto.php -------------------------------------------------------------------------------- /src/Telegram/Methods/SetChatStickerSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/SetChatStickerSet.php -------------------------------------------------------------------------------- /src/Telegram/Methods/SetChatTitle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/SetChatTitle.php -------------------------------------------------------------------------------- /src/Telegram/Methods/SetGameScore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/SetGameScore.php -------------------------------------------------------------------------------- /src/Telegram/Methods/SetMyCommands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/SetMyCommands.php -------------------------------------------------------------------------------- /src/Telegram/Methods/SetPassportDataErrors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/SetPassportDataErrors.php -------------------------------------------------------------------------------- /src/Telegram/Methods/SetStickerPositionInSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/SetStickerPositionInSet.php -------------------------------------------------------------------------------- /src/Telegram/Methods/SetStickerSetThumb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/SetStickerSetThumb.php -------------------------------------------------------------------------------- /src/Telegram/Methods/SetStickerSetThumbnail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/SetStickerSetThumbnail.php -------------------------------------------------------------------------------- /src/Telegram/Methods/SetWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/SetWebhook.php -------------------------------------------------------------------------------- /src/Telegram/Methods/StopMessageLiveLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/StopMessageLiveLocation.php -------------------------------------------------------------------------------- /src/Telegram/Methods/StopPoll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/StopPoll.php -------------------------------------------------------------------------------- /src/Telegram/Methods/UnbanChatMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/UnbanChatMember.php -------------------------------------------------------------------------------- /src/Telegram/Methods/UnpinAllChatMessages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/UnpinAllChatMessages.php -------------------------------------------------------------------------------- /src/Telegram/Methods/UnpinChatMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/UnpinChatMessage.php -------------------------------------------------------------------------------- /src/Telegram/Methods/UploadStickerFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Methods/UploadStickerFile.php -------------------------------------------------------------------------------- /src/Telegram/Types/Animation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Animation.php -------------------------------------------------------------------------------- /src/Telegram/Types/Audio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Audio.php -------------------------------------------------------------------------------- /src/Telegram/Types/BotCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/BotCommand.php -------------------------------------------------------------------------------- /src/Telegram/Types/BotCommandScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/BotCommandScope.php -------------------------------------------------------------------------------- /src/Telegram/Types/CallbackGame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/CallbackGame.php -------------------------------------------------------------------------------- /src/Telegram/Types/CallbackQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/CallbackQuery.php -------------------------------------------------------------------------------- /src/Telegram/Types/Chat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Chat.php -------------------------------------------------------------------------------- /src/Telegram/Types/ChatInviteLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/ChatInviteLink.php -------------------------------------------------------------------------------- /src/Telegram/Types/ChatJoinRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/ChatJoinRequest.php -------------------------------------------------------------------------------- /src/Telegram/Types/ChatLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/ChatLocation.php -------------------------------------------------------------------------------- /src/Telegram/Types/ChatMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/ChatMember.php -------------------------------------------------------------------------------- /src/Telegram/Types/ChatMemberUpdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/ChatMemberUpdated.php -------------------------------------------------------------------------------- /src/Telegram/Types/ChatPermissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/ChatPermissions.php -------------------------------------------------------------------------------- /src/Telegram/Types/ChatPhoto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/ChatPhoto.php -------------------------------------------------------------------------------- /src/Telegram/Types/Contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Contact.php -------------------------------------------------------------------------------- /src/Telegram/Types/Custom/BotCommandArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Custom/BotCommandArray.php -------------------------------------------------------------------------------- /src/Telegram/Types/Custom/ChatMembersArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Custom/ChatMembersArray.php -------------------------------------------------------------------------------- /src/Telegram/Types/Custom/GameHighScoreArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Custom/GameHighScoreArray.php -------------------------------------------------------------------------------- /src/Telegram/Types/Custom/InlineKeyboardButtonArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Custom/InlineKeyboardButtonArray.php -------------------------------------------------------------------------------- /src/Telegram/Types/Custom/InputFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Custom/InputFile.php -------------------------------------------------------------------------------- /src/Telegram/Types/Custom/KeyboardButtonArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Custom/KeyboardButtonArray.php -------------------------------------------------------------------------------- /src/Telegram/Types/Custom/MessageArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Custom/MessageArray.php -------------------------------------------------------------------------------- /src/Telegram/Types/Custom/MessageEntityArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Custom/MessageEntityArray.php -------------------------------------------------------------------------------- /src/Telegram/Types/Custom/PassportFileArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Custom/PassportFileArray.php -------------------------------------------------------------------------------- /src/Telegram/Types/Custom/PhotoSizeArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Custom/PhotoSizeArray.php -------------------------------------------------------------------------------- /src/Telegram/Types/Custom/PollOptionArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Custom/PollOptionArray.php -------------------------------------------------------------------------------- /src/Telegram/Types/Custom/ResultArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Custom/ResultArray.php -------------------------------------------------------------------------------- /src/Telegram/Types/Custom/ResultBoolean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Custom/ResultBoolean.php -------------------------------------------------------------------------------- /src/Telegram/Types/Custom/ResultInt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Custom/ResultInt.php -------------------------------------------------------------------------------- /src/Telegram/Types/Custom/ResultNull.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Custom/ResultNull.php -------------------------------------------------------------------------------- /src/Telegram/Types/Custom/ResultString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Custom/ResultString.php -------------------------------------------------------------------------------- /src/Telegram/Types/Custom/StickerSetArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Custom/StickerSetArray.php -------------------------------------------------------------------------------- /src/Telegram/Types/Custom/UnsuccessfulRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Custom/UnsuccessfulRequest.php -------------------------------------------------------------------------------- /src/Telegram/Types/Custom/UpdatesArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Custom/UpdatesArray.php -------------------------------------------------------------------------------- /src/Telegram/Types/Custom/UserArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Custom/UserArray.php -------------------------------------------------------------------------------- /src/Telegram/Types/Custom/UserProfilePhotosArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Custom/UserProfilePhotosArray.php -------------------------------------------------------------------------------- /src/Telegram/Types/Dice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Dice.php -------------------------------------------------------------------------------- /src/Telegram/Types/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Document.php -------------------------------------------------------------------------------- /src/Telegram/Types/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/File.php -------------------------------------------------------------------------------- /src/Telegram/Types/ForceReply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/ForceReply.php -------------------------------------------------------------------------------- /src/Telegram/Types/ForumTopicClosed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/ForumTopicClosed.php -------------------------------------------------------------------------------- /src/Telegram/Types/ForumTopicCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/ForumTopicCreated.php -------------------------------------------------------------------------------- /src/Telegram/Types/ForumTopicEdited.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/ForumTopicEdited.php -------------------------------------------------------------------------------- /src/Telegram/Types/ForumTopicReopened.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/ForumTopicReopened.php -------------------------------------------------------------------------------- /src/Telegram/Types/Game.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Game.php -------------------------------------------------------------------------------- /src/Telegram/Types/GameHighScore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/GameHighScore.php -------------------------------------------------------------------------------- /src/Telegram/Types/Inline/ChosenResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Inline/ChosenResult.php -------------------------------------------------------------------------------- /src/Telegram/Types/Inline/Keyboard/Button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Inline/Keyboard/Button.php -------------------------------------------------------------------------------- /src/Telegram/Types/Inline/Keyboard/Markup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Inline/Keyboard/Markup.php -------------------------------------------------------------------------------- /src/Telegram/Types/Inline/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Inline/Query.php -------------------------------------------------------------------------------- /src/Telegram/Types/Inline/Query/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Inline/Query/Result.php -------------------------------------------------------------------------------- /src/Telegram/Types/Inline/Query/Result/Article.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Inline/Query/Result/Article.php -------------------------------------------------------------------------------- /src/Telegram/Types/Inline/Query/Result/Audio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Inline/Query/Result/Audio.php -------------------------------------------------------------------------------- /src/Telegram/Types/Inline/Query/Result/Cached/Audio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Inline/Query/Result/Cached/Audio.php -------------------------------------------------------------------------------- /src/Telegram/Types/Inline/Query/Result/Cached/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Inline/Query/Result/Cached/Document.php -------------------------------------------------------------------------------- /src/Telegram/Types/Inline/Query/Result/Cached/Gif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Inline/Query/Result/Cached/Gif.php -------------------------------------------------------------------------------- /src/Telegram/Types/Inline/Query/Result/Cached/Mpeg4Gif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Inline/Query/Result/Cached/Mpeg4Gif.php -------------------------------------------------------------------------------- /src/Telegram/Types/Inline/Query/Result/Cached/Photo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Inline/Query/Result/Cached/Photo.php -------------------------------------------------------------------------------- /src/Telegram/Types/Inline/Query/Result/Cached/Sticker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Inline/Query/Result/Cached/Sticker.php -------------------------------------------------------------------------------- /src/Telegram/Types/Inline/Query/Result/Cached/Video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Inline/Query/Result/Cached/Video.php -------------------------------------------------------------------------------- /src/Telegram/Types/Inline/Query/Result/Cached/Voice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Inline/Query/Result/Cached/Voice.php -------------------------------------------------------------------------------- /src/Telegram/Types/Inline/Query/Result/Contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Inline/Query/Result/Contact.php -------------------------------------------------------------------------------- /src/Telegram/Types/Inline/Query/Result/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Inline/Query/Result/Document.php -------------------------------------------------------------------------------- /src/Telegram/Types/Inline/Query/Result/Game.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Inline/Query/Result/Game.php -------------------------------------------------------------------------------- /src/Telegram/Types/Inline/Query/Result/Gif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Inline/Query/Result/Gif.php -------------------------------------------------------------------------------- /src/Telegram/Types/Inline/Query/Result/Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Inline/Query/Result/Location.php -------------------------------------------------------------------------------- /src/Telegram/Types/Inline/Query/Result/Mpeg4Gif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Inline/Query/Result/Mpeg4Gif.php -------------------------------------------------------------------------------- /src/Telegram/Types/Inline/Query/Result/Photo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Inline/Query/Result/Photo.php -------------------------------------------------------------------------------- /src/Telegram/Types/Inline/Query/Result/Venue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Inline/Query/Result/Venue.php -------------------------------------------------------------------------------- /src/Telegram/Types/Inline/Query/Result/Video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Inline/Query/Result/Video.php -------------------------------------------------------------------------------- /src/Telegram/Types/Inline/Query/Result/Voice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Inline/Query/Result/Voice.php -------------------------------------------------------------------------------- /src/Telegram/Types/InputMedia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/InputMedia.php -------------------------------------------------------------------------------- /src/Telegram/Types/InputMedia/Animation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/InputMedia/Animation.php -------------------------------------------------------------------------------- /src/Telegram/Types/InputMedia/Audio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/InputMedia/Audio.php -------------------------------------------------------------------------------- /src/Telegram/Types/InputMedia/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/InputMedia/Document.php -------------------------------------------------------------------------------- /src/Telegram/Types/InputMedia/Photo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/InputMedia/Photo.php -------------------------------------------------------------------------------- /src/Telegram/Types/InputMedia/Video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/InputMedia/Video.php -------------------------------------------------------------------------------- /src/Telegram/Types/InputMessageContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/InputMessageContent.php -------------------------------------------------------------------------------- /src/Telegram/Types/InputMessageContent/Contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/InputMessageContent/Contact.php -------------------------------------------------------------------------------- /src/Telegram/Types/InputMessageContent/Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/InputMessageContent/Location.php -------------------------------------------------------------------------------- /src/Telegram/Types/InputMessageContent/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/InputMessageContent/Text.php -------------------------------------------------------------------------------- /src/Telegram/Types/InputMessageContent/Venue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/InputMessageContent/Venue.php -------------------------------------------------------------------------------- /src/Telegram/Types/Invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Invoice.php -------------------------------------------------------------------------------- /src/Telegram/Types/KeyboardButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/KeyboardButton.php -------------------------------------------------------------------------------- /src/Telegram/Types/KeyboardButtonPollType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/KeyboardButtonPollType.php -------------------------------------------------------------------------------- /src/Telegram/Types/LabeledPrice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/LabeledPrice.php -------------------------------------------------------------------------------- /src/Telegram/Types/Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Location.php -------------------------------------------------------------------------------- /src/Telegram/Types/LoginUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/LoginUrl.php -------------------------------------------------------------------------------- /src/Telegram/Types/MaskPosition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/MaskPosition.php -------------------------------------------------------------------------------- /src/Telegram/Types/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Message.php -------------------------------------------------------------------------------- /src/Telegram/Types/MessageEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/MessageEntity.php -------------------------------------------------------------------------------- /src/Telegram/Types/OrderInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/OrderInfo.php -------------------------------------------------------------------------------- /src/Telegram/Types/Passport/ElementError/DataField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Passport/ElementError/DataField.php -------------------------------------------------------------------------------- /src/Telegram/Types/Passport/ElementError/FrontSide.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Passport/ElementError/FrontSide.php -------------------------------------------------------------------------------- /src/Telegram/Types/Passport/ElementError/ReverseSide.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Passport/ElementError/ReverseSide.php -------------------------------------------------------------------------------- /src/Telegram/Types/Passport/ElementError/Selfie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Passport/ElementError/Selfie.php -------------------------------------------------------------------------------- /src/Telegram/Types/Passport/EncryptedCredentials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Passport/EncryptedCredentials.php -------------------------------------------------------------------------------- /src/Telegram/Types/Passport/EncryptedPassportElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Passport/EncryptedPassportElement.php -------------------------------------------------------------------------------- /src/Telegram/Types/Passport/PassportData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Passport/PassportData.php -------------------------------------------------------------------------------- /src/Telegram/Types/Passport/PassportElementError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Passport/PassportElementError.php -------------------------------------------------------------------------------- /src/Telegram/Types/Passport/PassportFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Passport/PassportFile.php -------------------------------------------------------------------------------- /src/Telegram/Types/PhotoSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/PhotoSize.php -------------------------------------------------------------------------------- /src/Telegram/Types/Poll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Poll.php -------------------------------------------------------------------------------- /src/Telegram/Types/PollAnswer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/PollAnswer.php -------------------------------------------------------------------------------- /src/Telegram/Types/PollOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/PollOption.php -------------------------------------------------------------------------------- /src/Telegram/Types/PreCheckoutQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/PreCheckoutQuery.php -------------------------------------------------------------------------------- /src/Telegram/Types/ProximityAlertTriggered.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/ProximityAlertTriggered.php -------------------------------------------------------------------------------- /src/Telegram/Types/ReplyKeyboardHide.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/ReplyKeyboardHide.php -------------------------------------------------------------------------------- /src/Telegram/Types/ReplyKeyboardMarkup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/ReplyKeyboardMarkup.php -------------------------------------------------------------------------------- /src/Telegram/Types/ReplyKeyboardRemove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/ReplyKeyboardRemove.php -------------------------------------------------------------------------------- /src/Telegram/Types/ResponseParameters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/ResponseParameters.php -------------------------------------------------------------------------------- /src/Telegram/Types/ShippingAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/ShippingAddress.php -------------------------------------------------------------------------------- /src/Telegram/Types/ShippingOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/ShippingOption.php -------------------------------------------------------------------------------- /src/Telegram/Types/ShippingQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/ShippingQuery.php -------------------------------------------------------------------------------- /src/Telegram/Types/Sticker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Sticker.php -------------------------------------------------------------------------------- /src/Telegram/Types/StickerSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/StickerSet.php -------------------------------------------------------------------------------- /src/Telegram/Types/SuccessfulPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/SuccessfulPayment.php -------------------------------------------------------------------------------- /src/Telegram/Types/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Update.php -------------------------------------------------------------------------------- /src/Telegram/Types/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/User.php -------------------------------------------------------------------------------- /src/Telegram/Types/UserProfilePhotos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/UserProfilePhotos.php -------------------------------------------------------------------------------- /src/Telegram/Types/Venue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Venue.php -------------------------------------------------------------------------------- /src/Telegram/Types/Video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Video.php -------------------------------------------------------------------------------- /src/Telegram/Types/VideoNote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/VideoNote.php -------------------------------------------------------------------------------- /src/Telegram/Types/Voice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/Voice.php -------------------------------------------------------------------------------- /src/Telegram/Types/WebhookInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/Telegram/Types/WebhookInfo.php -------------------------------------------------------------------------------- /src/TgLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-api/HEAD/src/TgLog.php --------------------------------------------------------------------------------