Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2/**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @file
19 */
20namespace MediaWiki\Linter;
21
22use MediaWiki\Config\ServiceOptions;
23use MediaWiki\MediaWikiServices;
24
25// PHP unit does not understand code coverage for this file
26// as the @covers annotation cannot cover a specific file
27// This is fully tested in ServiceWiringTest.php
28// @codeCoverageIgnoreStart
29/**
30 * Linter wiring for MediaWiki services.
31 */
32return [
33    'Linter.CategoryManager' => static function ( MediaWikiServices $services ): CategoryManager {
34        return new CategoryManager(
35            $services->getMainConfig()->get( 'LinterCategories' )
36        );
37    },
38    'Linter.Database' => static function ( MediaWikiServices $services ): Database {
39        return new Database(
40            new ServiceOptions(
41                Database::CONSTRUCTOR_OPTIONS,
42                $services->getMainConfig()
43            ),
44            $services->get( 'Linter.CategoryManager' ),
45            $services->getDBLoadBalancerFactory()
46        );
47    },
48    'Linter.TotalsLookup' => static function ( MediaWikiServices $services ): TotalsLookup {
49        return new TotalsLookup(
50            new ServiceOptions(
51                TotalsLookup::CONSTRUCTOR_OPTIONS,
52                $services->getMainConfig()
53            ),
54            $services->getMainWANObjectCache(),
55            $services->getStatsdDataFactory(),
56            $services->get( 'Linter.CategoryManager' ),
57            $services->get( 'Linter.Database' )
58        );
59    },
60];
61// @codeCoverageIgnoreEnd