Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
4 / 4 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
HtmlLibrary | |
100.00% |
4 / 4 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
register | |
100.00% |
4 / 4 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | |
3 | namespace MediaWiki\Extension\Scribunto\Engines\LuaCommon; |
4 | |
5 | use MediaWiki\Parser\Parser; |
6 | |
7 | class HtmlLibrary extends LibraryBase { |
8 | public function register() { |
9 | return $this->getEngine()->registerInterface( 'mw.html.lua', [], [ |
10 | 'uniqPrefix' => Parser::MARKER_PREFIX, |
11 | 'uniqSuffix' => Parser::MARKER_SUFFIX, |
12 | ] ); |
13 | } |
14 | } |