MediaWiki master
MutableConfig.php
Go to the documentation of this file.
1<?php
23namespace MediaWiki\Config;
24
32interface MutableConfig extends Config {
33
41 public function set( $name, $value );
42}
43
45class_alias( MutableConfig::class, 'MutableConfig' );
Interface for configuration instances.
Definition Config.php:32
Interface for mutable configuration instances.