MediaWiki master
Config.php
Go to the documentation of this file.
1<?php
24
32interface Config {
33
41 public function get( $name );
42
50 public function has( $name );
51}
52
54class_alias( Config::class, 'Config' );
Interface for configuration instances.
Definition Config.php:32
has( $name)
Check whether a configuration option is set for the given name.