DeletechatphotoCommand.php 822 Bytes
Newer Older
1
<?php
2
/**
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;
12

13
use Longman\TelegramBot\Commands\SystemCommand;
14

15 16 17
/**
 * Delete chat photo command
 */
18
class DeletechatphotoCommand extends SystemCommand
19
{
20 21
    /**#@+
     * {@inheritdoc}
22
     */
23 24
    protected $name = 'Deletechatphoto';
    protected $description = 'Delete chat photo';
25
    protected $version = '1.0.1';
26
    /**#@-*/
27

28
    /**
29
     * {@inheritdoc}
30
     */
31
    /*public function execute()
32
    {
33 34
        //$message = $this->getMessage();
        //$delete_chat_photo = $message->getDeleteChatPhoto();
35
    }*/
36
}