summaryrefslogtreecommitdiff
path: root/src/Types/IdentifierType.php
blob: 93396fabbdb904371ddaff787806a315f4e85f07 (plain)
1
2
3
4
5
6
7
8
9
10
<?php

namespace App\Types;

enum IdentifierType: string
{
  case USER = "m.id.user";
  case THIRDPARTY = "m.id.thirdparty";
  case PHONE = "m.id.phone";
}