ChoseninlineresultCommand.php 939 Bytes
Newer Older
MBoretto's avatar
MBoretto committed
1
<?php
2
/**
MBoretto's avatar
MBoretto committed
3 4 5 6 7 8
 * 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.
9 10
 */

11
namespace Longman\TelegramBot\Commands\SystemCommands;
MBoretto's avatar
MBoretto committed
12

13
use Longman\TelegramBot\Commands\SystemCommand;
MBoretto's avatar
MBoretto committed
14

15 16 17
/**
 * Chosen inline result command
 */
18
class ChoseninlineresultCommand extends SystemCommand
MBoretto's avatar
MBoretto committed
19
{
20 21
    /**#@+
     * {@inheritdoc}
22
     */
23
    protected $name        = 'choseninlineresult';
MBoretto's avatar
MBoretto committed
24
    protected $description = 'Chosen result query';
25
    protected $version     = '1.0.1';
26
    /**#@-*/
MBoretto's avatar
MBoretto committed
27

28
    /**
29
     * {@inheritdoc}
30
     */
31
    /*public function execute()
MBoretto's avatar
MBoretto committed
32
    {
33
        //Information about chosen result is returned
34 35 36
        //$update = $this->getUpdate();
        //$inline_query = $update->getChosenInlineResult();
        //$query = $inline_query->getQuery();
37
    }*/
MBoretto's avatar
MBoretto committed
38
}