1 | <?php |
||
16 | final class WebhookEvent extends Event |
||
17 | { |
||
18 | /** @var Webhook */ |
||
19 | private $webhook; |
||
20 | |||
21 | /** |
||
22 | * WebhookEvent constructor. |
||
23 | * |
||
24 | * @param Webhook $webhook |
||
25 | */ |
||
26 | public function __construct(Webhook $webhook) |
||
30 | |||
31 | /** |
||
32 | * @return Webhook |
||
33 | */ |
||
34 | public function getWebhook(): Webhook |
||
38 | |||
39 | } |