summaryrefslogtreecommitdiff
path: root/matrix-specification/Enums/RoomGuestAccess.php
blob: 1c7a14bbb188493292479b311e46f037ce5507fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

namespace Matrix\Enums;

enum RoomGuestAccess: string
{
  case CAN_JOIN = "can_join";
  case FORBIDDEN = "forbidden";

  public function jsonSerialize(): string
  {
    return $this->value;
  }
}