Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2018-01-17 23:14:09 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2018-01-17 23:41:57 +0300
commit1e7b20f61585520b183a268662aa1b09c4f469b4 (patch)
treea0088dd7fb996e8af4fb42f7b5d976c3d3995ee6 /lib/public/IAppConfig.php
parent09f8a755ec6897eb72aa1da4eff623807201623d (diff)
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.php13
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
*