Longman\TelegramBot\Entities\ReplyToMessage::__construct PHP Метод

__construct() публичный Метод

ReplyToMessage constructor.
public __construct ( array $data, string $bot_name = '' )
$data array
$bot_name string
    public function __construct(array $data, $bot_name = '')
    {
        //As explained in the documentation
        //Reply to message can't contain other reply to message entities
        unset($data['reply_to_message']);
        parent::__construct($data, $bot_name);
    }
ReplyToMessage