<?php/* * This file is part of the TelegramBot package. * * (c) Avtandil Kikabidze aka LONGMAN <akalongman@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code.*/namespaceLongman\TelegramBot\Entities;useLongman\TelegramBot\Exception\TelegramException;classReplyToMessageextendsMessage{publicfunction__construct(array$data,$bot_name){//As explained in the documentation//Reply to message can't contain other reply to message entities$reply_to_message=null;$this->init($data,$bot_name);}}