27 lines
757 B
PHP
27 lines
757 B
PHP
<?php
|
|
|
|
namespace IndifferentKetchup\Codex\Analysis\ProjectZomboid;
|
|
|
|
use IndifferentKetchup\Codex\Analysis\Information;
|
|
use IndifferentKetchup\Codex\Analysis\PatternInsightInterface;
|
|
use IndifferentKetchup\Codex\Pattern\ProjectZomboid\AdminPattern;
|
|
|
|
class AdminChangedOptionInformation extends Information implements PatternInsightInterface
|
|
{
|
|
public static function getPatterns(): array
|
|
{
|
|
return [AdminPattern::CHANGED_OPTION_ENTRY];
|
|
}
|
|
|
|
public function setMatches(array $matches, mixed $patternKey): void
|
|
{
|
|
$this->setLabel('Admin changed option');
|
|
$this->setValue(sprintf(
|
|
'%s set %s=%s',
|
|
$matches['admin'],
|
|
$matches['option'],
|
|
$matches['value']
|
|
));
|
|
}
|
|
}
|