Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
Hooks
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
0.00% covered (danger)
0.00%
0 / 1
 onBeforePageDisplay
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3namespace MediaWiki\Extension\NavigationTiming;
4
5use MediaWiki\Hook\BeforePageDisplayHook;
6use MediaWiki\Output\OutputPage;
7use Skin;
8
9class Hooks implements BeforePageDisplayHook {
10    /**
11     * @param OutputPage $out
12     * @param Skin $skin
13     */
14    public function onBeforePageDisplay( $out, $skin ): void {
15        $out->addModules( 'ext.navigationTiming' );
16    }
17}