diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-04-19 01:04:59 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-04-19 01:04:59 +0200 |
commit | c056c5201061670b0a51d4bd242e704e00050d4b (patch) | |
tree | df3a2f62582ce22f0ea28e3a62b0d0457cdc1cd4 /lib/public/iappconfig.php | |
parent | cdf82909b8225a885fbf92b78208fb1fe258853e (diff) | |
download | nextcloud-server-c056c5201061670b0a51d4bd242e704e00050d4b.tar.gz nextcloud-server-c056c5201061670b0a51d4bd242e704e00050d4b.zip |
Add version to @deprecated tags
Diffstat (limited to 'lib/public/iappconfig.php')
-rw-r--r-- | lib/public/iappconfig.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/public/iappconfig.php b/lib/public/iappconfig.php index 5cf704a71a3..d89ffd9194a 100644 --- a/lib/public/iappconfig.php +++ b/lib/public/iappconfig.php @@ -45,7 +45,7 @@ interface IAppConfig { * @param string $key key * @param string $default = null, default value if the key does not exist * @return string the value or $default - * @deprecated use method getAppValue of \OCP\IConfig + * @deprecated 8.0.0 use method getAppValue of \OCP\IConfig * * This function gets a value from the appconfig table. If the key does * not exist the default value will be returned @@ -58,7 +58,7 @@ interface IAppConfig { * @param string $app app * @param string $key key * @return bool - * @deprecated use method deleteAppValue of \OCP\IConfig + * @deprecated 8.0.0 use method deleteAppValue of \OCP\IConfig * @since 7.0.0 */ public function deleteKey($app, $key); @@ -67,7 +67,7 @@ interface IAppConfig { * Get the available keys for an app * @param string $app the app we are looking for * @return array an array of key names - * @deprecated use method getAppKeys of \OCP\IConfig + * @deprecated 8.0.0 use method getAppKeys of \OCP\IConfig * * This function gets all keys of an app. Please note that the values are * not returned. @@ -90,7 +90,7 @@ interface IAppConfig { * @param string $app app * @param string $key key * @param string $value value - * @deprecated use method setAppValue of \OCP\IConfig + * @deprecated 8.0.0 use method setAppValue of \OCP\IConfig * * Sets a value. If the key did not exist before it will be created. * @return void @@ -112,7 +112,7 @@ interface IAppConfig { * Remove app from appconfig * @param string $app app * @return bool - * @deprecated use method deleteAppValue of \OCP\IConfig + * @deprecated 8.0.0 use method deleteAppValue of \OCP\IConfig * * Removes all keys in appconfig belonging to the app. * @since 7.0.0 |