Scaffold Hytale game stubs

Add empty per-component subdirectories under src/{Analyser,Log,Parser,Pattern}/Hytale/
with .gitkeep markers, plus HytaleDetective stub extending the base Detective with
a TODO body. Smoke test under test/tests/Games/Hytale/ asserts the detective is
instantiable.
This commit is contained in:
2026-04-30 15:31:11 +00:00
parent e1df5cbfd8
commit 484d3b88a3
6 changed files with 25 additions and 0 deletions

View File

View File

@@ -0,0 +1,10 @@
<?php
namespace IndifferentKetchup\Codex\Detective\Hytale;
use IndifferentKetchup\Codex\Detective\Detective;
class HytaleDetective extends Detective
{
// TODO: implement game-specific log type detection
}

0
src/Log/Hytale/.gitkeep Normal file
View File

View File

View File

View File

@@ -0,0 +1,15 @@
<?php
namespace IndifferentKetchup\Codex\Test\Tests\Games\Hytale;
use IndifferentKetchup\Codex\Detective\Hytale\HytaleDetective;
use PHPUnit\Framework\TestCase;
class SmokeTest extends TestCase
{
public function testDetectiveIsInstantiable(): void
{
$detective = new HytaleDetective();
$this->assertInstanceOf(HytaleDetective::class, $detective);
}
}