<?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. */ namespace Longman\TelegramBot\Commands\SystemCommands; use Longman\TelegramBot\Commands\SystemCommand; /** * Chosen inline result command */ class ChoseninlineresultCommand extends SystemCommand { /**#@+ * {@inheritdoc} */ protected $name = 'choseninlineresult'; protected $description = 'Chosen result query'; protected $version = '1.0.1'; /**#@-*/ /** * {@inheritdoc} */ /*public function execute() { //Information about chosen result is returned //$update = $this->getUpdate(); //$inline_query = $update->getChosenInlineResult(); //$query = $inline_query->getQuery(); }*/ }