| Total Complexity | 1 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | trait ExportMethodTrait |
||
| 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 ExportChatInviteLinkMethod $method |
||
| 29 | * |
||
| 30 | * @throws NormalizationException |
||
| 31 | * @throws ResponseException |
||
| 32 | * |
||
| 33 | * @return string |
||
| 34 | */ |
||
| 35 | public function exportChatInviteLink(ExportChatInviteLinkMethod $method): string |
||
| 40 |