X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fconfig%2FHashConfig.php;h=d020d20fe01c13b17296b33cecdfcd43f03efc7a;hb=84890fea50524562350d3038a046ce1b92e4f9c4;hp=feef87d1e97e2da472fbf759745f291d7ee0596b;hpb=b5906606e1aa1a795231fb813b766818b1dd6c25;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/config/HashConfig.php b/includes/config/HashConfig.php index feef87d1e9..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,14 +60,17 @@ class HashConfig implements Config, MutableConfig { } /** - * @see Config::has + * @inheritDoc + * @since 1.24 */ public function has( $name ) { return array_key_exists( $name, $this->settings ); } /** - * @see Config::set + * @see MutableConfig::set + * @param string $name + * @param mixed $value */ public function set( $name, $value ) { $this->settings[$name] = $value;