Add keyboard markup tests and constructors to objects

This commit is contained in:
netkas 2024-10-09 17:50:57 -04:00
parent 560721ffc8
commit 0298049ca2
5 changed files with 255 additions and 13 deletions

View file

@ -11,6 +11,16 @@
private ?string $inline_field_placeholder;
private bool $selective;
/**
* ForceReply constructor.
*/
public function __construct()
{
$this->force_reply = false;
$this->inline_field_placeholder = null;
$this->selective = false;
}
/**
* Shows reply interface to the user, as if they manually selected the bot's message and tapped 'Reply'
*