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
3namespace MediaWiki\Specials\Contribute\Hook;
4
5interface ContributeCardsHook {
6    /**
7     * This hook is called before processing the list of cards
8     * to display on the contribute page
9     *
10     * @since 1.40
11     *
12     * @param array &$cards List of contribute cards data
13     * @return void
14     */
15    public function onContributeCards( array &$cards ): void;
16}