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 CirrusSearch\Event;
4
5use MediaWiki\Hook\LinksUpdateCompleteHook;
6
7/**
8 * Empty interface to help the EventBusBridge::factory method to return the same type
9 * regardless of the presence of the EventBus extension.
10 */
11interface EventBridge extends LinksUpdateCompleteHook {
12
13}