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