summaryrefslogtreecommitdiff
path: root/matrix-specification/Enums/EventType.php
diff options
context:
space:
mode:
Diffstat (limited to 'matrix-specification/Enums/EventType.php')
-rw-r--r--matrix-specification/Enums/EventType.php4
1 files changed, 4 insertions, 0 deletions
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;