Quite some work done here.

This commit is contained in:
Frank
2026-01-03 22:12:51 +01:00
parent af61a3b920
commit 5b6bfaf5ad
29 changed files with 658 additions and 41 deletions

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;
}
}