aboutsummaryrefslogtreecommitdiffstats
path: root/includes/config/HashConfig.php
diff options
context:
space:
mode:
authorUmherirrender <umherirrender_de.wp@web.de>2017-09-09 22:47:04 +0200
committerUmherirrender <umherirrender_de.wp@web.de>2017-09-10 20:32:31 +0200
commitf739a8f368ab64d63a2f21d15caf2caa766d6fc5 (patch)
treee9c0af94fac00cf9a6bea45379b60a68ea28048f /includes/config/HashConfig.php
parente754f6803f43ad0e011bd2b58b17826ef858319d (diff)
downloadmediawikicore-f739a8f368ab64d63a2f21d15caf2caa766d6fc5.tar.gz
mediawikicore-f739a8f368ab64d63a2f21d15caf2caa766d6fc5.zip
Improve some parameter docs
Add missing @return and @param to function docs and fixed some @param Change-Id: I810727961057cfdcc274428b239af5975c57468d
Diffstat (limited to 'includes/config/HashConfig.php')
-rw-r--r--includes/config/HashConfig.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/includes/config/HashConfig.php b/includes/config/HashConfig.php
index 4d6c68ca8b91..d020d20fe01c 100644
--- a/includes/config/HashConfig.php
+++ b/includes/config/HashConfig.php
@@ -49,7 +49,7 @@ class HashConfig implements Config, MutableConfig {
}
/**
- * @see Config::get
+ * @inheritDoc
*/
public function get( $name ) {
if ( !$this->has( $name ) ) {
@@ -60,7 +60,8 @@ class HashConfig implements Config, MutableConfig {
}
/**
- * @see Config::has
+ * @inheritDoc
+ * @since 1.24
*/
public function has( $name ) {
return array_key_exists( $name, $this->settings );
@@ -68,6 +69,8 @@ class HashConfig implements Config, MutableConfig {
/**
* @see MutableConfig::set
+ * @param string $name
+ * @param mixed $value
*/
public function set( $name, $value ) {
$this->settings[$name] = $value;