blob: d4be36e715e9df4e6e802c4006fb68dbfd43596d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
namespace Matrix\Enums;
enum UserIdentifierType: string implements \JsonSerializable
{
case USER = "m.id.user";
case THIRDPARTY = "m.id.thirdparty";
case PHONE = "m.id.phone";
public function jsonSerialize(): string
{
return $this->value;
}
}
|