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