Total Complexity | 1 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
14 | trait UnbanMethodTrait |
||
15 | { |
||
16 | /** |
||
17 | * @param $method |
||
18 | * @param $type |
||
19 | * |
||
20 | * @throws ResponseException |
||
21 | * @throws NormalizationException |
||
22 | * |
||
23 | * @return mixed |
||
24 | */ |
||
25 | abstract public function call($method, $type = null); |
||
26 | |||
27 | /** |
||
28 | * @param UnbanChatMemberMethod $method |
||
29 | * |
||
30 | * @throws NormalizationException |
||
31 | * @throws ResponseException |
||
32 | * |
||
33 | * @return bool |
||
34 | */ |
||
35 | public function unbanChatMember(UnbanChatMemberMethod $method): bool |
||
40 |