| Total Complexity | 3 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | final class WebhooksEndpoint extends ResourceEndpoint |
||
| 19 | { |
||
| 20 | /** @use CRUDEndpointTrait<Webhook> */ |
||
| 21 | use CRUDEndpointTrait; |
||
| 22 | |||
| 23 | public function __construct(DigiSign $parent) |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @param Webhook|string $webhook |
||
| 30 | */ |
||
| 31 | public function attempts($webhook): WebhookAttemptsEndpoint |
||
| 32 | { |
||
| 33 | return new WebhookAttemptsEndpoint($this, $webhook); |
||
| 34 | } |
||
| 35 | |||
| 36 | public function test(string $id): ResourceInterface |
||
| 39 | } |
||
| 40 | } |
||
| 41 |