Added SendVideo Method
This commit is contained in:
parent
54a7f410af
commit
f17915bab6
2 changed files with 139 additions and 0 deletions
|
@ -30,6 +30,7 @@
|
|||
case SEND_PHOTO = 'sendPhoto';
|
||||
case SEND_AUDIO = 'sendAudio';
|
||||
case SEND_DOCUMENT = 'sendDocument';
|
||||
case SEND_VIDEO = 'sendVideo';
|
||||
|
||||
/**
|
||||
* Executes a command on the provided bot with the given parameters.
|
||||
|
@ -54,6 +55,7 @@
|
|||
self::SEND_PHOTO => SendPhoto::execute($bot, $parameters),
|
||||
self::SEND_AUDIO => SendAudio::execute($bot, $parameters),
|
||||
self::SEND_DOCUMENT => SendDocument::execute($bot, $parameters),
|
||||
self::SEND_VIDEO => SendVideo::execute($bot, $parameters),
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue