Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | public static function loadCoreTranslation() { |
||
19 | $_lang = array(); |
||
20 | JarvisLanguage::$data['core'] = array(); |
||
21 | //Loading JarvisPHP Core language |
||
22 | if(file_exists('language/JarvisPHP_'._LANGUAGE.'.php')) { |
||
23 | require 'language/JarvisPHP_'._LANGUAGE.'.php'; |
||
24 | JarvisLanguage::$data['core'] = array_merge(JarvisLanguage::$data['core'], $_lang); |
||
25 | } |
||
26 | } |
||
27 | |||
60 |
This check marks private properties in classes that are never used. Those properties can be removed.