blob: bed83233fa726ea4095790867dbc6fb9e24211dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
namespace Matrix\Data;
class IdentityServerInformation implements \JsonSerializable
{
public function __construct(
private string $baseUrl,
)
{}
public function jsonSerialize(): array
{
return [
"base_url" => $this->baseUrl,
];
}
}
|