Total Complexity | 1 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
15 | class SetChatStickerSetMethod implements SetMethodAliasInterface |
||
16 | { |
||
17 | use ChatIdVariableTrait; |
||
18 | |||
19 | /** |
||
20 | * Name of the sticker set to be set as the group sticker set. |
||
21 | * |
||
22 | * @var string |
||
23 | */ |
||
24 | public $stickerSetName; |
||
25 | |||
26 | /** |
||
27 | * @param int|string $chatId |
||
28 | * @param string $stickerSetName |
||
29 | * |
||
30 | * @return SetChatStickerSetMethod |
||
31 | */ |
||
32 | 1 | public static function create($chatId, string $stickerSetName): SetChatStickerSetMethod |
|
41 |