MediaWiki master
NullIniSink.php
Go to the documentation of this file.
1<?php
2
4
10class NullIniSink extends PhpIniSink {
11
17 public function set( string $option, string $value ): void {
18 // noop
19 }
20
21}
Null implementation of PhpIniSink, useful for testing and benchmarking.
Settings sink for values to pass to ini_set.