wiki.techinc.nl/includes/Settings/Config/NullIniSink.php
daniel ce8c3ddfe5 SettingsBuilder: remove @unstable markers.
The @unstable markers were intended for the 1.38 release.
The interface can be conisdered stable in 1.39.

Change-Id: Ie2fdd5bfe2622aa8845883019c1666dfb3073719
2022-05-03 11:35:46 +00:00

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
}
}