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 FileImporter\Interfaces;
4
5use FileImporter\Data\SourceUrl;
6
7/**
8 * Interface to get prefixes for interwiki links to the source
9 * if they apply.
10 *
11 * @license GPL-2.0-or-later
12 * @author Christoph Jauera <christoph.jauera@wikimedia.de>
13 */
14interface LinkPrefixLookup {
15
16    public function getPrefix( SourceUrl $sourceUrl ): string;
17
18}