Total Complexity | 1 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
14 | trait UnbanMethodTrait |
||
15 | { |
||
16 | /** |
||
17 | * @param UnbanMethodAliasInterface $method |
||
18 | * |
||
19 | * @throws ResponseException |
||
20 | * |
||
21 | * @return bool |
||
22 | */ |
||
23 | abstract public function unban(UnbanMethodAliasInterface $method): bool; |
||
24 | |||
25 | /** |
||
26 | * @param UnbanChatMemberMethod $method |
||
27 | * |
||
28 | * @throws ResponseException |
||
29 | * |
||
30 | * @return bool |
||
31 | */ |
||
32 | 2 | public function unbanChatMember(UnbanChatMemberMethod $method): bool |
|
37 |