Moved InputMessageContent objects

This commit is contained in:
netkas 2024-10-03 21:17:09 -04:00
parent fb2a06024d
commit 4c0ad925d7
11 changed files with 14 additions and 14 deletions

View file

@ -12,7 +12,7 @@
use TgBotLib\Objects\Inline\InlineKeyboardMarkup;
use TgBotLib\Objects\Inline\InlineQueryResult;
use TgBotLib\Objects\Inline\InputMessageContent;
use TgBotLib\Objects\InputMessageContent\InputVenueMessageContent;
use TgBotLib\Objects\Inline\InputMessageContent\InputVenueMessageContent;
use TgBotLib\Objects\MessageEntity;
class InlineQueryResultDocument extends InlineQueryResult implements ObjectTypeInterface

View file

@ -10,7 +10,7 @@
use TgBotLib\Objects\Inline\InlineKeyboardMarkup;
use TgBotLib\Objects\Inline\InlineQueryResult;
use TgBotLib\Objects\Inline\InputMessageContent;
use TgBotLib\Objects\InputMessageContent\InputContactMessageContent;
use TgBotLib\Objects\Inline\InputMessageContent\InputContactMessageContent;
class InlineQueryResultLocation extends InlineQueryResult implements ObjectTypeInterface
{

View file

@ -10,7 +10,7 @@
use TgBotLib\Objects\Inline\InlineKeyboardMarkup;
use TgBotLib\Objects\Inline\InlineQueryResult;
use TgBotLib\Objects\Inline\InputMessageContent;
use TgBotLib\Objects\InputMessageContent\InputVenueMessageContent;
use TgBotLib\Objects\Inline\InputMessageContent\InputVenueMessageContent;
use TgBotLib\Objects\MessageEntity;
class InlineQueryResultMpeg4Gif extends InlineQueryResult implements ObjectTypeInterface

View file

@ -11,7 +11,7 @@
use TgBotLib\Objects\Inline\InlineKeyboardMarkup;
use TgBotLib\Objects\Inline\InlineQueryResult;
use TgBotLib\Objects\Inline\InputMessageContent;
use TgBotLib\Objects\InputMessageContent\InputTextMessageContent;
use TgBotLib\Objects\Inline\InputMessageContent\InputTextMessageContent;
use TgBotLib\Objects\MessageEntity;
class InlineQueryResultPhoto extends InlineQueryResult implements ObjectTypeInterface

View file

@ -9,7 +9,7 @@
use TgBotLib\Objects\Inline\InlineKeyboardMarkup;
use TgBotLib\Objects\Inline\InlineQueryResult;
use TgBotLib\Objects\Inline\InputMessageContent;
use TgBotLib\Objects\InputMessageContent\InputVenueMessageContent;
use TgBotLib\Objects\Inline\InputMessageContent\InputVenueMessageContent;
class InlineQueryResultVenue extends InlineQueryResult implements ObjectTypeInterface
{

View file

@ -5,10 +5,10 @@
use InvalidArgumentException;
use TgBotLib\Enums\Types\InputMessageContentType;
use TgBotLib\Interfaces\ObjectTypeInterface;
use TgBotLib\Objects\InputMessageContent\InputInvoiceMessageContent;
use TgBotLib\Objects\InputMessageContent\InputLocationMessageContent;
use TgBotLib\Objects\InputMessageContent\InputTextMessageContent;
use TgBotLib\Objects\InputMessageContent\InputVenueMessageContent;
use TgBotLib\Objects\Inline\InputMessageContent\InputInvoiceMessageContent;
use TgBotLib\Objects\Inline\InputMessageContent\InputLocationMessageContent;
use TgBotLib\Objects\Inline\InputMessageContent\InputTextMessageContent;
use TgBotLib\Objects\Inline\InputMessageContent\InputVenueMessageContent;
abstract class InputMessageContent implements ObjectTypeInterface
{

View file

@ -3,7 +3,7 @@
/** @noinspection PhpUnused */
/** @noinspection PhpMissingFieldTypeInspection */
namespace TgBotLib\Objects\InputMessageContent;
namespace TgBotLib\Objects\Inline\InputMessageContent;
use InvalidArgumentException;
use TgBotLib\Classes\Validate;

View file

@ -3,7 +3,7 @@
/** @noinspection PhpMissingFieldTypeInspection */
/** @noinspection PhpUnused */
namespace TgBotLib\Objects\InputMessageContent;
namespace TgBotLib\Objects\Inline\InputMessageContent;
use InvalidArgumentException;
use TgBotLib\Classes\Validate;

View file

@ -3,7 +3,7 @@
/** @noinspection PhpUnused */
/** @noinspection PhpMissingFieldTypeInspection */
namespace TgBotLib\Objects\InputMessageContent;
namespace TgBotLib\Objects\Inline\InputMessageContent;
use InvalidArgumentException;
use TgBotLib\Classes\Validate;

View file

@ -3,7 +3,7 @@
/** @noinspection PhpUnused */
/** @noinspection PhpMissingFieldTypeInspection */
namespace TgBotLib\Objects\InputMessageContent;
namespace TgBotLib\Objects\Inline\InputMessageContent;
use InvalidArgumentException;
use TgBotLib\Classes\Validate;

View file

@ -3,7 +3,7 @@
/** @noinspection PhpUnused */
/** @noinspection PhpMissingFieldTypeInspection */
namespace TgBotLib\Objects\InputMessageContent;
namespace TgBotLib\Objects\Inline\InputMessageContent;
use TgBotLib\Enums\Types\InputMessageContentType;
use TgBotLib\Interfaces\ObjectTypeInterface;