mediawiki-extensions-Scribunto/includes/engines/LuaCommon/HtmlLibrary.php
Umherirrender 55bd9d22bb Add method scope visibility
Change-Id: I2efe0f71266d70e9a41e044406d82ef7daa31296
2018-11-19 21:18:12 +00:00

11 lines
268 B
PHP

<?php
class Scribunto_LuaHtmlLibrary extends Scribunto_LuaLibraryBase {
public function register() {
return $this->getEngine()->registerInterface( 'mw.html.lua', [], [
'uniqPrefix' => Parser::MARKER_PREFIX,
'uniqSuffix' => Parser::MARKER_SUFFIX,
] );
}
}