Merge "registration: Only allow one extension to set a specific config setting"
[lhc/web/wiklou.git] / includes / config / HashConfig.php
index 4d6c68c..d020d20 100644 (file)
@@ -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;