Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
NullIniSink
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
0.00% covered (danger)
0.00%
0 / 1
 set
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3namespace MediaWiki\Settings\Config;
4
5/**
6 * Null implementation of PhpIniSink, useful for testing and benchmarking.
7 *
8 * @since 1.39
9 */
10class NullIniSink extends PhpIniSink {
11
12    /**
13     * @param string $option
14     * @param string $value
15     * @return void
16     */
17    public function set( string $option, string $value ): void {
18        // noop
19    }
20
21}