From 0b8603ec753f9802478384b2bad33db5a23fd823 Mon Sep 17 00:00:00 2001 From: netkas Date: Fri, 4 Oct 2024 15:10:22 -0400 Subject: [PATCH] Moved Passport objects --- src/TgBotLib/Objects/Message.php | 1 + src/TgBotLib/Objects/{ => Passport}/EncryptedCredentials.php | 2 +- .../Objects/{ => Passport}/EncryptedPassportElement.php | 2 +- src/TgBotLib/Objects/{ => Passport}/PassportData.php | 2 +- src/TgBotLib/Objects/{ => Passport}/PassportFile.php | 2 +- 5 files changed, 5 insertions(+), 4 deletions(-) rename src/TgBotLib/Objects/{ => Passport}/EncryptedCredentials.php (98%) rename src/TgBotLib/Objects/{ => Passport}/EncryptedPassportElement.php (99%) rename src/TgBotLib/Objects/{ => Passport}/PassportData.php (97%) rename src/TgBotLib/Objects/{ => Passport}/PassportFile.php (98%) diff --git a/src/TgBotLib/Objects/Message.php b/src/TgBotLib/Objects/Message.php index a71d243..f1f6aa0 100644 --- a/src/TgBotLib/Objects/Message.php +++ b/src/TgBotLib/Objects/Message.php @@ -4,6 +4,7 @@ namespace TgBotLib\Objects; use TgBotLib\Interfaces\ObjectTypeInterface; + use TgBotLib\Objects\Passport\PassportData; use TgBotLib\Objects\Payments\Invoice; use TgBotLib\Objects\Payments\RefundedPayment; use TgBotLib\Objects\Payments\SuccessfulPayment; diff --git a/src/TgBotLib/Objects/EncryptedCredentials.php b/src/TgBotLib/Objects/Passport/EncryptedCredentials.php similarity index 98% rename from src/TgBotLib/Objects/EncryptedCredentials.php rename to src/TgBotLib/Objects/Passport/EncryptedCredentials.php index 61f864b..f2a54fe 100644 --- a/src/TgBotLib/Objects/EncryptedCredentials.php +++ b/src/TgBotLib/Objects/Passport/EncryptedCredentials.php @@ -1,7 +1,7 @@