X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fconfig%2FConfig.php;h=38f589dcd02b5fba0f772db5fd377348274c0609;hb=d7a00c1ebc5a93a61653a651b71907db5a923ce0;hp=68e90b4582450a50ecb454300dc4832e3f53b04a;hpb=7ab8db133026a844160c966e7bcf37cea4224f97;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 ); }