Added \TgBotLib\Abstracts > MessageEntityType
This commit is contained in:
parent
9691ebcebb
commit
2e058e9d9b
1 changed files with 41 additions and 0 deletions
41
src/TgBotLib/Abstracts/MessageEntityType.php
Normal file
41
src/TgBotLib/Abstracts/MessageEntityType.php
Normal file
|
@ -0,0 +1,41 @@
|
|||
<?php
|
||||
|
||||
namespace TgBotLib\Abstracts;
|
||||
|
||||
abstract class MessageEntityType
|
||||
{
|
||||
const Mention = 'mention';
|
||||
|
||||
const Hashtag = 'hashtag';
|
||||
|
||||
const CashTag = 'cashtag';
|
||||
|
||||
const BotCommand = 'bot_command';
|
||||
|
||||
const Url = 'url';
|
||||
|
||||
const Email = 'email';
|
||||
|
||||
const PhoneNumber = 'phone_number';
|
||||
|
||||
const Bold = 'bold';
|
||||
|
||||
const Italic = 'italic';
|
||||
|
||||
const Underline = 'underline';
|
||||
|
||||
const Strikethrough = 'strikethrough';
|
||||
|
||||
const Spoiler = 'spoiler';
|
||||
|
||||
const Code = 'code';
|
||||
|
||||
const Pre = 'pre';
|
||||
|
||||
const TextLink = 'text_link';
|
||||
|
||||
const TextMention = 'text_mention';
|
||||
|
||||
const CustomEmoji = 'custom_emoji';
|
||||
|
||||
}
|
Loading…
Add table
Reference in a new issue