mediawiki-extensions-Scribunto/includes/Engines/LuaCommon/HtmlLibrary.php
Umherirrender db8f22c1d4 Use namespaced classes
Changes to the use statements done automatically via script

Change-Id: Iedad37d75aee4d2a6960ab20148f813c6cf7061a
2024-06-10 20:41:43 +02:00

15 lines
332 B
PHP

<?php
namespace MediaWiki\Extension\Scribunto\Engines\LuaCommon;
use MediaWiki\Parser\Parser;
class HtmlLibrary extends LibraryBase {
public function register() {
return $this->getEngine()->registerInterface( 'mw.html.lua', [], [
'uniqPrefix' => Parser::MARKER_PREFIX,
'uniqSuffix' => Parser::MARKER_SUFFIX,
] );
}
}