mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-12-19 11:21:48 +00:00
846495fe45
Bug: T328220 Change-Id: I38be06abdabff29276f07c378f3ef434973fb8d6
16 lines
377 B
PHP
16 lines
377 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\Scribunto\Tests\Engines\LuaCommon;
|
|
|
|
use LogicException;
|
|
use MediaWiki\Extension\Scribunto\Engines\LuaCommon\LibraryBase;
|
|
|
|
class LuaCommonTestsFailLibrary extends LibraryBase {
|
|
public function __construct() {
|
|
throw new LogicException( 'deferLoad library that is never required was loaded anyway' );
|
|
}
|
|
|
|
public function register() {
|
|
}
|
|
}
|