Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
61 | 10 | private function addCallbackHandlers( $options ) { |
|
62 | |||
63 | 10 | $dynamicInterwikiPrefixLoader = new DynamicInterwikiPrefixLoader( |
|
64 | 10 | $options['externalRepositoryEndpoints'] |
|
65 | 10 | ); |
|
66 | |||
67 | $this->handlers['InterwikiLoadPrefix'] = function( $prefix, &$interwiki ) use( $dynamicInterwikiPrefixLoader ) { |
||
68 | 2 | return $dynamicInterwikiPrefixLoader->tryToLoadIwMapForExternalRepository( $prefix, $interwiki ); |
|
69 | }; |
||
70 | 10 | } |
|
71 | |||
73 |