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