Added constructors to InlineQuery objects

This commit is contained in:
Netkas 2023-04-23 20:40:53 -04:00
parent 51cce667f7
commit c3ecb75d6c
6 changed files with 48 additions and 0 deletions

View file

@ -70,6 +70,14 @@
*/
private $input_message_content;
/**
* InlineQueryResultAudio constructor.
*/
public function __construct()
{
$this->type = 'audio';
}
/**
* Type of the result, must be audio
*