Total Complexity | 1 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | class StartCommand extends UserCommand |
||
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.2.0'; |
||
42 | |||
43 | /** |
||
44 | * Command execute method |
||
45 | * |
||
46 | * @return ServerResponse |
||
47 | */ |
||
48 | public function execute(): ServerResponse |
||
57 |