Total Complexity | 1 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
11 | trait KickMethodTrait |
||
12 | { |
||
13 | /** |
||
14 | * @param KickMethodAliasInterface $method |
||
15 | * |
||
16 | * @throws ResponseException |
||
17 | * |
||
18 | * @return bool |
||
19 | */ |
||
20 | abstract public function kick(KickMethodAliasInterface $method): bool; |
||
21 | |||
22 | /** |
||
23 | * @param KickChatMemberMethod $method |
||
24 | * |
||
25 | * @throws ResponseException |
||
26 | * |
||
27 | * @return bool |
||
28 | */ |
||
29 | 1 | public function kickChatMember(KickChatMemberMethod $method): bool |
|
34 |