Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
6 / 6 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
WikibaseLexemeLibrary | |
100.00% |
6 / 6 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
register | |
100.00% |
6 / 6 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | |
3 | namespace Wikibase\Lexeme\MediaWiki\Scribunto; |
4 | |
5 | use MediaWiki\Extension\Scribunto\Engines\LuaCommon\LibraryBase; |
6 | |
7 | /** |
8 | * @license GPL-2.0-or-later |
9 | */ |
10 | class WikibaseLexemeLibrary extends LibraryBase { |
11 | |
12 | /** |
13 | * Register the mw.wikibase.lexeme.lua library. |
14 | */ |
15 | public function register() { |
16 | // These functions will be exposed to the Lua module. |
17 | // They are member functions on a Lua table which is private to the module, thus |
18 | // these can't be called from user code, unless explicitly exposed in Lua. |
19 | $lib = [ |
20 | // no functions right now (check out the git history if you want to add some) |
21 | ]; |
22 | |
23 | return $this->getEngine()->registerInterface( |
24 | __DIR__ . '/mw.wikibase.lexeme.lua', $lib, [] |
25 | ); |
26 | } |
27 | |
28 | } |