aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/AppConfig.php
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2024-02-12 13:23:36 -0100
committerMaxence Lange <maxence@artificial-owl.com>2024-02-12 13:23:36 -0100
commit809e0fe923adf23d34a6707bd7a65562736a071c (patch)
tree6455612b7de96b5625024b3e829b3619057424c0 /lib/private/AppConfig.php
parent52ebb8e4b1156c593e857317d17f9adfe1642f2c (diff)
downloadnextcloud-server-809e0fe923adf23d34a6707bd7a65562736a071c.tar.gz
nextcloud-server-809e0fe923adf23d34a6707bd7a65562736a071c.zip
fix phpdoc
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'lib/private/AppConfig.php')
-rw-r--r--lib/private/AppConfig.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/private/AppConfig.php b/lib/private/AppConfig.php
index deef96b1d41..9148a34a50b 100644
--- a/lib/private/AppConfig.php
+++ b/lib/private/AppConfig.php
@@ -204,7 +204,7 @@ class AppConfig implements IAppConfig {
* @inheritDoc
*
* @param string $app id of the app
- * @param string $key config keys prefix to search
+ * @param string $prefix config keys prefix to search
* @param bool $filtered TRUE to hide sensitive config values. Value are replaced by {@see IConfig::SENSITIVE_VALUE}
*
* @return array<string, string> [configKey => configValue]
@@ -1306,7 +1306,7 @@ class AppConfig implements IAppConfig {
* @param string|false $key
*
* @return array|false
- * @deprecated 29.0.0 use getAllValues()
+ * @deprecated 29.0.0 use {@see getAllValues()}
*/
public function getValues($app, $key) {
if (($app !== false) === ($key !== false)) {
@@ -1327,7 +1327,7 @@ class AppConfig implements IAppConfig {
* @param string $app
*
* @return array
- * @deprecated 29.0.0 use getAllValues()
+ * @deprecated 29.0.0 use {@see getAllValues()}
*/
public function getFilteredValues($app) {
return $this->getAllValues($app, filtered: true);