Completed
Push — master ( e52205...6d1075 )
by Armando
04:05 queued 02:25
created

SystemCommands/SupergroupchatcreatedCommand.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
/**
3
 * This file is part of the TelegramBot package.
4
 *
5
 * (c) Avtandil Kikabidze aka LONGMAN <[email protected]>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * 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
 * Super group chat created command
17
 */
18
class SupergroupchatcreatedCommand extends SystemCommand
19
{
20
    /**
21
     * @var string
22
     */
23
    protected $name = 'Supergroupchatcreated';
24
25
    /**
26
     * @var string
27
     */
28
    protected $description = 'Super group chat created';
29
30
    /**
31
     * @var string
32
     */
33
    protected $version = '1.0.0';
34
35
    /**
36
     * Command execute method
37
     *
38
     * @return mixed
39
     * @throws \Longman\TelegramBot\Exception\TelegramException
40
     */
41
    public function execute()
42
    {
43
        //$message = $this->getMessage();
1 ignored issue
show
Unused Code Comprehensibility introduced by
60% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
44
        //$supergroup_chat_created = $message->getSuperGroupChatCreated();
45
46
        return parent::execute();
47
    }
48
}
49