aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/AppConfig.php
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2024-09-18 23:51:06 +0200
committerFerdinand Thiessen <opensource@fthiessen.de>2024-09-20 00:46:03 +0200
commita8f46af20f4fccac0257eba950e70d0da96c4a5a (patch)
treeb3922576860114dac6747ed7fc98ab4360864b2d /lib/private/AppConfig.php
parente7f8ab1c3b7bdbc6f34a62e5b5bbaa2f903f467b (diff)
downloadnextcloud-server-a8f46af20f4fccac0257eba950e70d0da96c4a5a.tar.gz
nextcloud-server-a8f46af20f4fccac0257eba950e70d0da96c4a5a.zip
chore: Add proper deprecation dates where missing
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'lib/private/AppConfig.php')
-rw-r--r--lib/private/AppConfig.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/private/AppConfig.php b/lib/private/AppConfig.php
index 828d83bc67a..bd574d4335c 100644
--- a/lib/private/AppConfig.php
+++ b/lib/private/AppConfig.php
@@ -1295,7 +1295,7 @@ class AppConfig implements IAppConfig {
* @param string $default = null, default value if the key does not exist
*
* @return string the value or $default
- * @deprecated - use getValue*()
+ * @deprecated 29.0.0 use getValue*()
*
* This function gets a value from the appconfig table. If the key does
* not exist the default value will be returned
@@ -1316,7 +1316,7 @@ class AppConfig implements IAppConfig {
* @return bool True if the value was inserted or updated, false if the value was the same
* @throws AppConfigTypeConflictException
* @throws AppConfigUnknownKeyException
- * @deprecated
+ * @deprecated 29.0.0
*/
public function setValue($app, $key, $value) {
/**
@@ -1422,7 +1422,7 @@ class AppConfig implements IAppConfig {
* @param string $app
*
* @return string[]
- * @deprecated data sensitivity should be set when calling setValue*()
+ * @deprecated 29.0.0 data sensitivity should be set when calling setValue*()
*/
private function getSensitiveKeys(string $app): array {
$sensitiveValues = [
@@ -1533,7 +1533,7 @@ class AppConfig implements IAppConfig {
* Clear all the cached app config values
* New cache will be generated next time a config value is retrieved
*
- * @deprecated use {@see clearCache()}
+ * @deprecated 29.0.0 use {@see clearCache()}
*/
public function clearCachedConfig(): void {
$this->clearCache();