| Total Complexity | 2 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | class SetChatDescriptionMethod |
||
| 16 | { |
||
| 17 | use FillFromArrayTrait; |
||
| 18 | use ChatIdVariableTrait; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Optional. New chat description, 0-255 characters. |
||
| 22 | * |
||
| 23 | * @var string|null |
||
| 24 | */ |
||
| 25 | public $description; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * SetChatDescriptionMethod constructor. |
||
| 29 | * |
||
| 30 | * @param int|string $chatId |
||
| 31 | * @param array|null $data |
||
| 32 | * |
||
| 33 | * @throws \Greenplugin\TelegramBot\Exception\BadArgumentException |
||
| 34 | */ |
||
| 35 | public function __construct($chatId, array $data = null) |
||
| 43 |