Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 8
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3/**
4 * Testing entry point. Do not use for production setups!
5 *
6 * @see README.md
7 * @see https://wikiba.se
8 *
9 * @license GPL-2.0-or-later
10 */
11
12if ( $wgEnableWikibaseRepo ?? true ) {
13    wfLoadExtension( 'WikibaseRepository', __DIR__ . '/extension-repo.json' );
14
15    if ( defined( 'MW_QUIBBLE_CI' ) ) {
16        require_once __DIR__ . '/repo/config/Wikibase.ci.php';
17    }
18}
19
20if ( $wgEnableWikibaseClient ?? true ) {
21    wfLoadExtension( 'WikibaseClient', __DIR__ . '/extension-client.json' );
22
23    if ( defined( 'MW_QUIBBLE_CI' ) ) {
24        require_once __DIR__ . '/client/config/WikibaseClient.ci.php';
25    }
26}