From 51fa22dc26a9200c80202e92d49873a0c8ead455 Mon Sep 17 00:00:00 2001 From: Maxence Lange Date: Wed, 31 Jan 2024 10:40:46 -0100 Subject: fix psalm Signed-off-by: Maxence Lange --- lib/private/AppFramework/Services/AppConfig.php | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'lib/private/AppFramework/Services') diff --git a/lib/private/AppFramework/Services/AppConfig.php b/lib/private/AppFramework/Services/AppConfig.php index 054ce5f145f..a90e38f065f 100644 --- a/lib/private/AppFramework/Services/AppConfig.php +++ b/lib/private/AppFramework/Services/AppConfig.php @@ -37,6 +37,7 @@ class AppConfig implements IAppConfig { public function __construct( private IConfig $config, private string $appName, + /** @var \OC\AppConfig */ private \OCP\IAppConfig $appConfig, ) { } @@ -61,7 +62,7 @@ class AppConfig implements IAppConfig { * @since 29.0.0 */ public function hasAppKey(string $key, ?bool $lazy = false): bool { - return $this->appConfig->hasKey($this->appName, $key); + return $this->appConfig->hasKey($this->appName, $key, $lazy); } /** @@ -73,7 +74,7 @@ class AppConfig implements IAppConfig { * @since 29.0.0 */ public function isSensitive(string $key, ?bool $lazy = false): bool { - return $this->appConfig->isSensitive($this->appName, $key); + return $this->appConfig->isSensitive($this->appName, $key, $lazy); } /** @@ -109,9 +110,10 @@ class AppConfig implements IAppConfig { * @param string $key the key of the value, under which will be saved * @param string $value the value that should be stored * @since 20.0.0 - * @deprecated use {@see setAppValueString()} + * @deprecated 29.0.0 use {@see setAppValueString()} */ public function setAppValue(string $key, string $value): void { + /** @psalm-suppress InternalMethod */ $this->appConfig->setValueMixed($this->appName, $key, $value); } @@ -229,10 +231,12 @@ class AppConfig implements IAppConfig { * @param string $default * * @since 20.0.0 - * @deprecated use {@see getAppValueString()} + * @deprecated 29.0.0 use {@see getAppValueString()} * @return string */ public function getAppValue(string $key, string $default = ''): string { + /** @psalm-suppress InternalMethod */ + /** @psalm-suppress UndefinedInterfaceMethod */ return $this->appConfig->getValueMixed($this->appName, $key, $default); } -- cgit v1.2.3