DeletechatphotoCommand.php 1008 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
    /**
     * @var string
22
     */
23
    protected $name = 'deletechatphoto';
24 25 26 27

    /**
     * @var string
     */
28 29
    protected $description = 'Delete chat photo';

30
    /**
31
     * @var string
32
     */
33
    protected $version = '1.0.0';
34

35 36 37 38 39 40 41
    /**
     * Command execute method
     *
     * @return mixed
     * @throws \Longman\TelegramBot\Exception\TelegramException
     */
    public function execute()
42
    {
43 44
        //$message = $this->getMessage();
        //$delete_chat_photo = $message->getDeleteChatPhoto();
45 46 47

        return parent::execute();
    }
48
}