blob: 4531ce573076bab9feaa063713ee09518e1aedd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
namespace App\Controllers;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpFoundation\JsonResponse;
class ServerImplementationController
{
public function version(): Response
{
return new JsonResponse([
"server" => [
"name" => "Matrix PHP",
"version" => "0.1.0",
],
]);
}
}
|