X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2Fconfig%2FConfig.php;h=38f589dcd02b5fba0f772db5fd377348274c0609;hb=07a27f19cf7651ffe792f5c57bb10fb296af7878;hp=68e90b4582450a50ecb454300dc4832e3f53b04a;hpb=f93d34fb756b3271cc13b5581316cefa66de5013;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/config/Config.php b/includes/config/Config.php index 68e90b4582..38f589dcd0 100644 --- a/includes/config/Config.php +++ b/includes/config/Config.php @@ -37,11 +37,11 @@ interface Config { public function get( $name ); /** - * Set a configuration variable such a "Sitename" to something like "My Wiki" + * Check whether a configuration option is set for the given name * * @param string $name Name of configuration option - * @param mixed $value Value to set - * @throws ConfigException + * @return bool + * @since 1.24 */ - public function set( $name, $value ); + public function has( $name ); }