diff options
author | Maxence Lange <maxence@artificial-owl.com> | 2024-04-04 17:40:31 -0100 |
---|---|---|
committer | Maxence Lange <maxence@artificial-owl.com> | 2024-04-05 17:49:34 -0100 |
commit | 97e59b12a13fcaf51280818c176a2631ebc1d3a4 (patch) | |
tree | 4c57722997c698d2dd9d52e97b04953cda613c2c /lib/private/AppFramework | |
parent | cc813fec23561398a217f7c1e7a98991cf849064 (diff) | |
download | nextcloud-server-97e59b12a13fcaf51280818c176a2631ebc1d3a4.tar.gz nextcloud-server-97e59b12a13fcaf51280818c176a2631ebc1d3a4.zip |
fix(appconfig): only convert single entry on searchValues()
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'lib/private/AppFramework')
-rw-r--r-- | lib/private/AppFramework/Services/AppConfig.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/AppFramework/Services/AppConfig.php b/lib/private/AppFramework/Services/AppConfig.php index 1d18baef9ed..d3dfd3d362b 100644 --- a/lib/private/AppFramework/Services/AppConfig.php +++ b/lib/private/AppFramework/Services/AppConfig.php @@ -97,7 +97,7 @@ class AppConfig implements IAppConfig { * @param string $key config keys prefix to search * @param bool $filtered TRUE to hide sensitive config values. Value are replaced by {@see IConfig::SENSITIVE_VALUE} * - * @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 { |