Added \TgBotLib\Abstracts > BotCommandScopeType
This commit is contained in:
parent
1c2363eca6
commit
6d7cfb7de4
1 changed files with 14 additions and 0 deletions
14
src/TgBotLib/Abstracts/BotCommandScopeType.php
Normal file
14
src/TgBotLib/Abstracts/BotCommandScopeType.php
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace TgBotLib\Abstracts;
|
||||||
|
|
||||||
|
abstract class BotCommandScopeType
|
||||||
|
{
|
||||||
|
const Default = 'default';
|
||||||
|
const AllPrivateChats = 'all_private_chats';
|
||||||
|
const AllGroupChats = 'all_group_chats';
|
||||||
|
const AllChatAdministrators = 'all_chat_administrators';
|
||||||
|
const Chat = 'chat';
|
||||||
|
const ChatAdministrators = 'chat_administrators';
|
||||||
|
const ChatMember = 'chat_member';
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue