Total Complexity | 1 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
14 | class BotCommandType |
||
15 | { |
||
16 | /** |
||
17 | * Text of the command, 1-32 characters. Can contain only lowercase English letters, digits and underscores. |
||
18 | * |
||
19 | * @var string |
||
20 | */ |
||
21 | public $command; |
||
22 | |||
23 | /** |
||
24 | * Description of the command, 3-256 characters. |
||
25 | * |
||
26 | * @var string |
||
27 | */ |
||
28 | public $description; |
||
29 | |||
30 | 1 | public static function create(string $command, string $description): BotCommandType |
|
39 |