Moved Stickers
This commit is contained in:
parent
0b8603ec75
commit
6c9af0b1d8
7 changed files with 10 additions and 4 deletions
|
@ -39,7 +39,7 @@
|
|||
use TgBotLib\Objects\MenuButton;
|
||||
use TgBotLib\Objects\Message;
|
||||
use TgBotLib\Objects\Poll;
|
||||
use TgBotLib\Objects\Sticker;
|
||||
use TgBotLib\Objects\Stickers\Sticker;
|
||||
use TgBotLib\Objects\Update;
|
||||
use TgBotLib\Objects\User;
|
||||
use TgBotLib\Objects\UserProfilePhotos;
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
namespace TgBotLib\Objects;
|
||||
|
||||
use TgBotLib\Interfaces\ObjectTypeInterface;
|
||||
use TgBotLib\Objects\Stickers\Sticker;
|
||||
|
||||
class BusinessIntro implements ObjectTypeInterface
|
||||
{
|
||||
|
|
|
@ -4,6 +4,7 @@ namespace TgBotLib\Objects;
|
|||
|
||||
use TgBotLib\Interfaces\ObjectTypeInterface;
|
||||
use TgBotLib\Objects\Payments\Invoice;
|
||||
use TgBotLib\Objects\Stickers\Sticker;
|
||||
|
||||
class ExternalReplyInfo implements ObjectTypeInterface
|
||||
{
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
use TgBotLib\Objects\Payments\Invoice;
|
||||
use TgBotLib\Objects\Payments\RefundedPayment;
|
||||
use TgBotLib\Objects\Payments\SuccessfulPayment;
|
||||
use TgBotLib\Objects\Stickers\Sticker;
|
||||
|
||||
class Message extends MaybeInaccessibleMessage implements ObjectTypeInterface
|
||||
{
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
|
||||
namespace TgBotLib\Objects;
|
||||
namespace TgBotLib\Objects\Stickers;
|
||||
|
||||
use TgBotLib\Interfaces\ObjectTypeInterface;
|
||||
|
|
@ -1,9 +1,11 @@
|
|||
<?php
|
||||
|
||||
|
||||
namespace TgBotLib\Objects;
|
||||
namespace TgBotLib\Objects\Stickers;
|
||||
|
||||
use TgBotLib\Interfaces\ObjectTypeInterface;
|
||||
use TgBotLib\Objects\File;
|
||||
use TgBotLib\Objects\PhotoSize;
|
||||
|
||||
class Sticker implements ObjectTypeInterface
|
||||
{
|
|
@ -1,10 +1,11 @@
|
|||
<?php
|
||||
|
||||
|
||||
namespace TgBotLib\Objects;
|
||||
namespace TgBotLib\Objects\Stickers;
|
||||
|
||||
use TgBotLib\Enums\Types\StickerType;
|
||||
use TgBotLib\Interfaces\ObjectTypeInterface;
|
||||
use TgBotLib\Objects\PhotoSize;
|
||||
|
||||
class StickerSet implements ObjectTypeInterface
|
||||
{
|
Loading…
Add table
Reference in a new issue