The @unstable markers were intended for the 1.38 release. The interface can be conisdered stable in 1.39. Change-Id: Ie2fdd5bfe2622aa8845883019c1666dfb3073719
21 lines
342 B
PHP
21 lines
342 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Settings\Config;
|
|
|
|
/**
|
|
* Null implementation of PhpIniSink, useful for testing and benchmarking.
|
|
*
|
|
* @since 1.39
|
|
*/
|
|
class NullIniSink extends PhpIniSink {
|
|
|
|
/**
|
|
* @param string $option
|
|
* @param string $value
|
|
* @return void
|
|
*/
|
|
public function set( string $option, string $value ): void {
|
|
// noop
|
|
}
|
|
|
|
}
|