Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
MediaWikiParameterValidator | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
__construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | declare( strict_types = 1 ); |
3 | |
4 | namespace MediaWiki\Extension\Translate\Validation\Validators; |
5 | |
6 | /** |
7 | * An insertable wiki parameter validator that also acts as an InsertableSuggester |
8 | * @license GPL-2.0-or-later |
9 | * @since 2019.12 |
10 | */ |
11 | class MediaWikiParameterValidator extends InsertableRegexValidator { |
12 | public function __construct() { |
13 | parent::__construct( '/\$[1-9]/' ); |
14 | } |
15 | } |