refactor(config): remove runtime config files and centralize route/bootstrap

This commit is contained in:
2026-04-01 20:27:42 +02:00
parent dba589b495
commit 5699bc6c5b
20 changed files with 487 additions and 118 deletions

View File

@@ -102,7 +102,10 @@ class SettingServicesFactory
public function createSettingCacheService(): SettingCacheService
{
return $this->settingCacheService ??= new SettingCacheService();
return $this->settingCacheService ??= new SettingCacheService(
null,
$this->createSettingsMetadataGateway()
);
}
public function createThemeConfigGateway(): ThemeConfigGateway