| Conditions | 2 | 
| Paths | 2 | 
| Total Lines | 14 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 39 | 	public function i18nFileProvider() { | 
            ||
| 40 | |||
| 41 | $provider = [];  | 
            ||
| 42 | $location = $GLOBALS['wgMessagesDirs']['SemanticCite'];  | 
            ||
| 43 | |||
| 44 | $bulkFileProvider = UtilityFactory::getInstance()->newBulkFileProvider( $location );  | 
            ||
| 45 | $bulkFileProvider->searchByFileExtension( 'json' );  | 
            ||
| 46 | |||
| 47 | 		foreach ( $bulkFileProvider->getFiles() as $file ) { | 
            ||
| 48 | $provider[] = [ $file ];  | 
            ||
| 49 | }  | 
            ||
| 50 | |||
| 51 | return $provider;  | 
            ||
| 52 | }  | 
            ||
| 53 | |||
| 55 |