hanyuu/src/SiteInfo.php

15 lines
247 B
PHP

<?php
namespace Hanyuu;
use Syokuhou\IConfig;
class SiteInfo {
public function __construct(
private IConfig $config
) {}
public function getName(): string {
return $this->config->getString('name', 'Hanyuu');
}
}