Total Complexity | 1 |
Total Lines | 48 |
Duplicated Lines | 0 % |
Changes | 4 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | abstract class WebhookCallEvent |
||
8 | { |
||
9 | public string $httpVerb; |
||
10 | |||
11 | public string $webhookUrl; |
||
12 | |||
13 | public array $payload; |
||
14 | |||
15 | public array $headers; |
||
16 | |||
17 | public array $meta; |
||
18 | |||
19 | public array $tags; |
||
20 | |||
21 | public int $attempt; |
||
22 | |||
23 | public ?Response $response; |
||
24 | |||
25 | public ?string $errorType; |
||
26 | |||
27 | public ?string $errorMessage; |
||
28 | |||
29 | public string $uuid; |
||
30 | |||
31 | public function __construct( |
||
57 |