Conditions | 2 |
Paths | 2 |
Total Lines | 16 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
25 | public function classLoader($class = false) |
||
26 | { |
||
27 | $relative_path = preg_replace(array( |
||
28 | '/Toolshedr/', |
||
29 | '/\\\\/' |
||
30 | ), array( |
||
31 | '', |
||
32 | DIRECTORY_SEPARATOR |
||
33 | ), $class); |
||
34 | |||
35 | $class_file = $this->root_path.$relative_path.'.php'; |
||
36 | |||
37 | if (file_exists($class_file)) { |
||
38 | require_once $class_file; |
||
39 | } |
||
40 | } |
||
41 | } |
||
42 |