diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2018-01-17 21:10:40 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-01-17 21:41:56 +0100 |
commit | 09f8a755ec6897eb72aa1da4eff623807201623d (patch) | |
tree | c8072f914b1de3ebcdf373a2547303adcd8ad479 /lib/public | |
parent | ee2617d88c17165dd3a4862f2a5b98a434435430 (diff) | |
download | nextcloud-server-09f8a755ec6897eb72aa1da4eff623807201623d.tar.gz nextcloud-server-09f8a755ec6897eb72aa1da4eff623807201623d.zip |
Remove IAppConfig::getValue
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/IAppConfig.php | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/public/IAppConfig.php b/lib/public/IAppConfig.php index 25597db2802..5c831590859 100644 --- a/lib/public/IAppConfig.php +++ b/lib/public/IAppConfig.php @@ -41,20 +41,6 @@ interface IAppConfig { public function hasKey($app, $key); /** - * Gets the config value - * @param string $app app - * @param string $key key - * @param string $default = null, default value if the key does not exist - * @return string the value or $default - * @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 - * @since 7.0.0 - */ - public function getValue($app, $key, $default = null); - - /** * get multiply values, either the app or key can be used as wildcard by setting it to false * * @param string|false $key |