Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
NumericalParameterValidator | |
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 numerical parameter validator that also acts as an InsertableSuggester |
8 | * @license GPL-2.0-or-later |
9 | * @since 2020.03 |
10 | */ |
11 | class NumericalParameterValidator extends InsertableRegexValidator { |
12 | public function __construct() { |
13 | parent::__construct( '/\$\d+/' ); |
14 | } |
15 | } |