blob: 01a5e9ef1373e4df00c01d301add1044e25dbfbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
namespace Matrix\Data;
class UserId
{
public static function validate(): bool
{}
public static function parse(): array
{}
public static function build(string $username, string $serverName): string
{
return "@$username:$serverName";
}
}
|