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// phpcs:disable MediaWiki.NamingConventions.LowerCamelFunctionsName.FunctionName
4
5namespace MediaWiki\Extension\GoogleNewsSitemap\Hooks;
6
7/**
8 * This is a hook handler interface, see docs/Hooks.md in core.
9 * Use the hook name "GoogleNewsSitemap::Query" to register handlers implementing this interface.
10 *
11 * @stable to implement
12 * @ingroup Hooks
13 */
14interface GoogleNewsSitemapQueryHook {
15    /**
16     * @param array $params
17     * @param array &$joins
18     * @param array &$conditions
19     * @param array &$tables
20     * @return bool|void True or no return value to continue or false to abort
21     */
22    public function onGoogleNewsSitemap__Query( array $params, array &$joins, array &$conditions, array &$tables );
23}