From b19a8f63ad727a3633885d3f2b81edf8181a53b9 Mon Sep 17 00:00:00 2001 From: Daniel Weipert Date: Thu, 25 Sep 2025 13:38:24 +0200 Subject: matrix-specification split work in progress --- matrix-specification/Enums/EventType.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'matrix-specification/Enums/EventType.php') diff --git a/matrix-specification/Enums/EventType.php b/matrix-specification/Enums/EventType.php index bf805b2..da199dd 100644 --- a/matrix-specification/Enums/EventType.php +++ b/matrix-specification/Enums/EventType.php @@ -5,11 +5,15 @@ namespace Matrix\Enums; enum EventType: string implements \JsonSerializable { case PRESENCE = "m.presence"; + case RECEIPT = "m.receipt"; case ROOM_MEMBER = "m.room.member"; case ROOM_MESSAGE = "m.room.message"; case ROOM_NAME = "m.room.name"; + case TAG = "m.tag"; + case TYPING = "m.typing"; + public function jsonSerialize(): string { return $this->value; -- cgit v1.2.3