Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 4 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | public function __call($name,$value){ |
||
20 | array_push(self::$application,$name); |
||
21 | $file = implode('/',self::$application); |
||
22 | $file = self::$config['core']['apps'].'/'.$file.'.php'; |
||
23 | self::$application = []; |
||
24 | if(is_file($file)) { |
||
25 | $result = require($file); |
||
26 | if(is_callable($result)) $result = call_user_func_array($result,$value); |
||
27 | return $result; |
||
28 | } |
||
29 | } |
||
30 | |||
33 |
This check marks private properties in classes that are never used. Those properties can be removed.