MediaWiki master
MutableConfig.php
Go to the documentation of this file.
1<?php
9namespace MediaWiki\Config;
10
18interface MutableConfig extends Config {
19
27 public function set( $name, $value );
28}
29
31class_alias( MutableConfig::class, 'MutableConfig' );
Interface for configuration instances.
Definition Config.php:18
Interface for mutable configuration instances.