Add empty per-component subdirectories under src/{Analyser,Log,Parser,Pattern}/SevenDaysToDie/
with .gitkeep markers, plus SevenDaysToDieDetective stub extending the base Detective with
a TODO body. Smoke test under test/tests/Games/SevenDaysToDie/ asserts the detective is
instantiable. Directory name is alphabetic because PHP class names cannot begin with a digit.
11 lines
228 B
PHP
11 lines
228 B
PHP
<?php
|
|
|
|
namespace IndifferentKetchup\Codex\Detective\SevenDaysToDie;
|
|
|
|
use IndifferentKetchup\Codex\Detective\Detective;
|
|
|
|
class SevenDaysToDieDetective extends Detective
|
|
{
|
|
// TODO: implement game-specific log type detection
|
|
}
|