Total Complexity | 2 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
16 | class SetChatDescriptionMethod implements SetMethodAliasInterface |
||
17 | { |
||
18 | use FillFromArrayTrait; |
||
19 | use ChatIdVariableTrait; |
||
20 | |||
21 | /** |
||
22 | * Optional. New chat description, 0-255 characters. |
||
23 | * |
||
24 | * @var string|null |
||
25 | */ |
||
26 | public $description; |
||
27 | |||
28 | /** |
||
29 | * @param int|string $chatId |
||
30 | * @param array|null $data |
||
31 | * |
||
32 | * @throws \TgBotApi\BotApiBase\Exception\BadArgumentException |
||
33 | * |
||
34 | * @return SetChatDescriptionMethod |
||
35 | */ |
||
36 | 3 | public static function create($chatId, array $data = null): SetChatDescriptionMethod |
|
47 |