Completed
Push — 920-new_system_commands ( da604d...268d3b )
by Armando
02:22
created

StartCommand   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 39
Duplicated Lines 100 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 39
loc 39
ccs 0
cts 3
cp 0
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A execute() 10 10 1

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

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
use Longman\TelegramBot\Request;
15
16
/**
17
 * Start command
18
 *
19
 * @todo Remove due to deprecation!
20
 */
21 View Code Duplication
class StartCommand extends SystemCommand
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
22
{
23
    /**
24
     * @var string
25
     */
26
    protected $name = 'start';
27
28
    /**
29
     * @var string
30
     */
31
    protected $description = 'Start command';
32
33
    /**
34
     * @var string
35
     */
36
    protected $usage = '/start';
37
38
    /**
39
     * @var string
40
     */
41
    protected $version = '1.0.0';
42
43
    /**
44
     * Command execute method
45
     *
46
     * @return mixed
47
     * @throws \Longman\TelegramBot\Exception\TelegramException
48
     */
49
    public function execute()
50
    {
51
        //$message = $this->getMessage();
52
        //$chat_id = $message->getChat()->getId();
53
        //$user_id = $message->getFrom()->getId();
54
55
        trigger_error(__CLASS__ . ' is deprecated and will be removed and handled by ' . GenericmessageCommand::class . ' by default in a future release.', E_USER_DEPRECATED);
56
57
        return parent::execute();
58
    }
59
}
60