| Total Complexity | 5 |
| Total Lines | 45 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class BotCommand extends TdObject |
||
| 15 | { |
||
| 16 | public const TYPE_NAME = 'botCommand'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Text of the bot command. |
||
| 20 | */ |
||
| 21 | protected string $command; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Description of the bot command. |
||
| 25 | */ |
||
| 26 | protected string $description; |
||
| 27 | |||
| 28 | public function __construct(string $command, string $description) |
||
| 29 | { |
||
| 30 | $this->command = $command; |
||
| 31 | $this->description = $description; |
||
| 32 | } |
||
| 33 | |||
| 34 | public static function fromArray(array $array): BotCommand |
||
| 35 | { |
||
| 36 | return new static( |
||
| 37 | $array['command'], |
||
| 38 | $array['description'], |
||
| 39 | ); |
||
| 40 | } |
||
| 41 | |||
| 42 | public function typeSerialize(): array |
||
| 48 | ]; |
||
| 49 | } |
||
| 50 | |||
| 51 | public function getCommand(): string |
||
| 54 | } |
||
| 55 | |||
| 56 | public function getDescription(): string |
||
| 61 |