Scaffold Minecraft game stubs

Add empty per-component subdirectories under src/{Analyser,Log,Parser,Pattern}/Minecraft/
with .gitkeep markers, plus MinecraftDetective stub extending the base Detective with
a TODO body. Smoke test under test/tests/Games/Minecraft/ asserts the detective is
instantiable. Introduces src/Pattern/ as a new top-level component directory.
This commit is contained in:
2026-04-30 15:30:28 +00:00
parent 30750ae9d1
commit c9956be7a2
6 changed files with 25 additions and 0 deletions

View File

View File

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

View File

View File

View File