25 lines
534 B
PHP
25 lines
534 B
PHP
<?php
|
|
|
|
namespace IndifferentKetchup\Codex\Analysis\ProjectZomboid;
|
|
|
|
use IndifferentKetchup\Codex\Analysis\Solution;
|
|
|
|
class ModMissingSolution extends Solution
|
|
{
|
|
private string $modName = '';
|
|
|
|
public function setModName(string $modName): static
|
|
{
|
|
$this->modName = $modName;
|
|
return $this;
|
|
}
|
|
|
|
public function getMessage(): string
|
|
{
|
|
return sprintf(
|
|
'Subscribe to mod "%s" or remove its ID from the Mods= line in serverconfig.ini.',
|
|
$this->modName
|
|
);
|
|
}
|
|
}
|