Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
23 | class SendDiceMethod implements SendMethodAliasInterface |
||
24 | { |
||
25 | use SendToChatVariablesTrait; |
||
26 | use FillFromArrayTrait; |
||
27 | |||
28 | /** |
||
29 | * @param int|string $chatId |
||
30 | * |
||
31 | * @throws BadArgumentException |
||
32 | */ |
||
33 | 1 | public static function create($chatId, array $data = null): SendDiceMethod |
|
45 |