Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
6 / 6
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
Scribunto_LuaWikibaseLexemeLibrary
100.00% covered (success)
100.00%
6 / 6
100.00% covered (success)
100.00%
1 / 1
1
100.00% covered (success)
100.00%
1 / 1
 register
100.00% covered (success)
100.00%
6 / 6
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2
3namespace Wikibase\Lexeme\MediaWiki\Scribunto;
4
5use Scribunto_LuaLibraryBase;
6
7/**
8 * @license GPL-2.0-or-later
9 */
10class Scribunto_LuaWikibaseLexemeLibrary extends Scribunto_LuaLibraryBase {
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}