버그 수정

This commit is contained in:
2019-10-05 03:11:44 +09:00
parent 61da4e56c1
commit 01d3e6c03d
5 changed files with 15 additions and 15 deletions
+3 -3
View File
@@ -93,9 +93,9 @@ function displaySpecialWarInfo(?string $type):string{
}
function displaySpecialDomesticInfo(?string $type):string{
$class = getGeneralSpecialDomesticClass($type);
$info = $class::$info;
$name = $class::$name;
$class = buildGeneralSpecialDomesticClass($type);
$info = $class->getInfo();
$name = $class->getName();
$templates = new \League\Plates\Engine(__dir__.'/templates');