X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=includes%2Fconfig%2FHashConfig.php;h=d020d20fe01c13b17296b33cecdfcd43f03efc7a;hp=4d6c68ca8b91ec38835a98e92aa03e41eef70552;hb=7babd362babcbf7f20adb8e12edb4f4bc1d4249f;hpb=61898ad28ed69c5b391eb43e0db9386279b9612c diff --git a/includes/config/HashConfig.php b/includes/config/HashConfig.php index 4d6c68ca8b..d020d20fe0 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;