Use addons config entries instead of the addon table

This commit is contained in:
Philipp 2023-01-03 20:24:48 +01:00
parent cd11088cc4
commit 13b234d279
No known key found for this signature in database
GPG key ID: 24A7501396EB5432
7 changed files with 294 additions and 39 deletions

View file

@ -102,7 +102,7 @@ class Config implements IManageConfigValues
}
/** {@inheritDoc} */
public function get(string $cat, string $key, $default_value = null)
public function get(string $cat, string $key = null, $default_value = null)
{
return $this->configCache->get($cat, $key) ?? $default_value;
}