diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-04-17 17:11:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-17 17:11:36 +0200 |
commit | 3aa9c53a87cc1e69fb4285af265b2a3bba429614 (patch) | |
tree | 2666012026b470def0126305b5739ea397e27e44 /lib/public/AppFramework | |
parent | f865f447673cb452278652992abcde17276569ee (diff) | |
parent | 97e59b12a13fcaf51280818c176a2631ebc1d3a4 (diff) | |
download | nextcloud-server-3aa9c53a87cc1e69fb4285af265b2a3bba429614.tar.gz nextcloud-server-3aa9c53a87cc1e69fb4285af265b2a3bba429614.zip |
Merge pull request #44644 from nextcloud/enh/noid/returns-formated-app-values
fix(appconfig): format app values
Diffstat (limited to 'lib/public/AppFramework')
-rw-r--r-- | lib/public/AppFramework/Services/IAppConfig.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/AppFramework/Services/IAppConfig.php b/lib/public/AppFramework/Services/IAppConfig.php index 9340fdd3c32..74588ef2c99 100644 --- a/lib/public/AppFramework/Services/IAppConfig.php +++ b/lib/public/AppFramework/Services/IAppConfig.php @@ -88,7 +88,7 @@ interface IAppConfig { * @param string $key config keys prefix to search, can be empty. * @param bool $filtered filter sensitive config values * - * @return array<string, string> [configKey => configValue] + * @return array<string, string|int|float|bool|array> [configKey => configValue] * @since 29.0.0 */ public function getAllAppValues(string $key = '', bool $filtered = false): array; |