We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
app:started
1 parent 0b82b6a commit 5230866Copy full SHA for 5230866
1 file changed
src/Enums/WebhookEvent.php
@@ -8,13 +8,15 @@ final class WebhookEvent {
8
public const SMS_DELIVERED = 'sms:delivered';
9
public const SMS_FAILED = 'sms:failed';
10
public const SYSTEM_PING = 'system:ping';
11
+ public const APP_STARTED = 'app:started';
12
13
private const _ALL_ = [
14
self::SMS_RECEIVED,
15
self::SMS_SENT,
16
self::SMS_DELIVERED,
17
self::SMS_FAILED,
18
self::SYSTEM_PING,
19
+ self::APP_STARTED,
20
];
21
22
private string $value;
@@ -47,6 +49,10 @@ public static function SYSTEM_PING(): self {
47
49
return new self(self::SYSTEM_PING);
48
50
}
51
52
+ public static function APP_STARTED(): self {
53
+ return new self(self::APP_STARTED);
54
+ }
55
+
56
public static function FromValue(string $value): self {
57
return new self($value);
58
0 commit comments