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 | namespace FileImporter\Services\Wikitext; |
4 | |
5 | /** |
6 | * Generic interface for any kind of reverse namespace name to ID lookup. |
7 | * |
8 | * @license GPL-2.0-or-later |
9 | */ |
10 | interface NamespaceNameLookup { |
11 | |
12 | /** |
13 | * @return int|false False if there is no namespace with this name. |
14 | */ |
15 | public function getIndex( string $namespaceName ); |
16 | |
17 | } |