Total Complexity | 1 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
14 | class SetChatTitleMethod |
||
15 | { |
||
16 | use ChatIdVariableTrait; |
||
17 | |||
18 | /** |
||
19 | * New chat title, 1-255 characters. |
||
20 | * |
||
21 | * @var string |
||
22 | */ |
||
23 | public $title; |
||
24 | |||
25 | /** |
||
26 | * @param int|string $chatId |
||
27 | * @param string $title |
||
28 | * |
||
29 | * @return SetChatTitleMethod |
||
30 | */ |
||
31 | 1 | public static function create($chatId, string $title): SetChatTitleMethod |
|
40 |