Add AdminAddedItemInformation insight

This commit is contained in:
2026-04-30 21:44:08 +00:00
parent 55f769ca1e
commit 90c85a052f
3 changed files with 83 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
<?php
namespace IndifferentKetchup\Codex\Analysis\ProjectZomboid;
use IndifferentKetchup\Codex\Analysis\Information;
use IndifferentKetchup\Codex\Analysis\PatternInsightInterface;
use IndifferentKetchup\Codex\Pattern\ProjectZomboid\AdminPattern;
class AdminAddedItemInformation extends Information implements PatternInsightInterface
{
public static function getPatterns(): array
{
return [AdminPattern::ADDED_ITEM_ENTRY];
}
public function setMatches(array $matches, mixed $patternKey): void
{
$this->setLabel('Admin added item');
$this->setValue(sprintf(
'%s added %s to %s',
$matches['admin'],
$matches['item'],
$matches['target']
));
}
}