Conditions | 5 |
Paths | 4 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 5 |
Changes | 0 |
1 | <?php |
||
34 | 6 | public function fetchLanguagelinksFromParserOutput( ParserOutput $parserOutput ) { |
|
35 | |||
36 | 6 | if ( $parserOutput->getLanguageLinks() === [] || $parserOutput->getLanguageLinks() === null ) { |
|
37 | 3 | return; |
|
38 | } |
||
39 | |||
40 | 5 | foreach ( $parserOutput->getLanguageLinks() as $languageLink ) { |
|
41 | |||
42 | 5 | if ( strpos( $languageLink, 'sil:' ) !== false ) { |
|
43 | 3 | continue; |
|
44 | } |
||
45 | |||
46 | 2 | $this->addAnnotationForInterwikiLanguageLink( $languageLink ); |
|
47 | } |
||
48 | 5 | } |
|
49 | |||
64 |