mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-12-11 16:06:02 +00:00
11 lines
245 B
PHP
11 lines
245 B
PHP
|
<?php
|
||
|
|
||
|
class Scribunto_LuaCommonTestsFailLibrary extends Scribunto_LuaLibraryBase {
|
||
|
public function __construct() {
|
||
|
throw new MWException( 'deferLoad library that is never required was loaded anyway' );
|
||
|
}
|
||
|
|
||
|
public function register() {
|
||
|
}
|
||
|
}
|