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