mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-12-19 03:12:52 +00:00
408f4d0bc6
Change-Id: I4977bf534400643f83ab3400c3dfd736c53f9705
16 lines
371 B
PHP
16 lines
371 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\Scribunto\Tests\Engines\LuaCommon;
|
|
|
|
use MediaWiki\Extension\Scribunto\Engines\LuaCommon\LibraryBase;
|
|
use MWException;
|
|
|
|
class LuaCommonTestsFailLibrary extends LibraryBase {
|
|
public function __construct() {
|
|
throw new MWException( 'deferLoad library that is never required was loaded anyway' );
|
|
}
|
|
|
|
public function register() {
|
|
}
|
|
}
|