Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
15 | class DeleteWebhookMethod implements DeleteMethodAliasInterface |
||
16 | { |
||
17 | use FillFromArrayTrait; |
||
18 | |||
19 | /** |
||
20 | * Pass True to drop all pending updates. |
||
21 | * |
||
22 | * @var bool|null |
||
23 | */ |
||
24 | public $dropPendingUpdates; |
||
25 | |||
26 | /** |
||
27 | * @throws \TgBotApi\BotApiBase\Exception\BadArgumentException |
||
28 | */ |
||
29 | 1 | public static function create(array $data = null): DeleteWebhookMethod |
|
40 |