diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2018-01-17 21:14:09 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-01-17 21:41:57 +0100 |
commit | 1e7b20f61585520b183a268662aa1b09c4f469b4 (patch) | |
tree | a0088dd7fb996e8af4fb42f7b5d976c3d3995ee6 /lib/public/IAppConfig.php | |
parent | 09f8a755ec6897eb72aa1da4eff623807201623d (diff) | |
download | nextcloud-server-1e7b20f61585520b183a268662aa1b09c4f469b4.tar.gz nextcloud-server-1e7b20f61585520b183a268662aa1b09c4f469b4.zip |
Remove IAppConfig::setValue
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'lib/public/IAppConfig.php')
-rw-r--r-- | lib/public/IAppConfig.php | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/public/IAppConfig.php b/lib/public/IAppConfig.php index 5c831590859..2f268185e62 100644 --- a/lib/public/IAppConfig.php +++ b/lib/public/IAppConfig.php @@ -60,19 +60,6 @@ interface IAppConfig { public function getFilteredValues($app); /** - * sets a value in the appconfig - * @param string $app app - * @param string $key key - * @param string|float|int $value value - * @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 - * @since 7.0.0 - */ - public function setValue($app, $key, $value); - - /** * Get all apps using the config * @return array an array of app ids * |