mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-12-21 12:23:02 +00:00
1eecdac6de
Change-Id: I6d730d67decc859fd130fee5ec92b1cfb8d9ef64
13 lines
288 B
PHP
13 lines
288 B
PHP
<?php
|
|
|
|
use MediaWiki\Extension\Scribunto\Engines\LuaCommon\LibraryBase;
|
|
|
|
class LuaCommonTestsFailLibrary extends LibraryBase {
|
|
public function __construct() {
|
|
throw new MWException( 'deferLoad library that is never required was loaded anyway' );
|
|
}
|
|
|
|
public function register() {
|
|
}
|
|
}
|