blob: 6477ef4b3c06e059f1ce556a73e25944c21f1048 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
namespace Matrix\Enums;
enum RoomHistoryVisibility: string
{
case INVITED = "invited";
case JOINED = "joined";
case SHARED = "shared";
case WORLD_READABLE = "world_readable";
public function jsonSerialize(): string
{
return $this->value;
}
}
|