Quite some work done here.

This commit is contained in:
Frank
2026-01-03 22:12:51 +01:00
parent b58da74967
commit 654b4036b4
28 changed files with 657 additions and 40 deletions
+20
View File
@@ -0,0 +1,20 @@
<?php
namespace App\Game\Service;
class GameResponseService
{
public function getGameResponse(string $raw)
{
$info = json_decode($raw, true);
$message = $info['message'] ?? '';
$ts = $info['ts'] ?? '';
$data = [];
return $data;
}
}