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