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