Conditions | 4 |
Paths | 3 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 4.074 |
Changes | 0 |
1 | <?php |
||
51 | 5 | public function __call($name, $arguments) |
|
52 | { |
||
53 | 5 | $class_name = 'Biscolab\UpDown\Objects\\' . $name; |
|
54 | |||
55 | 5 | if(class_exists($class_name)) { |
|
56 | |||
57 | 5 | if(is_array($arguments) && !empty(current($arguments))) { |
|
58 | $arguments = current($arguments); |
||
59 | } |
||
60 | 5 | return new $class_name($arguments); |
|
61 | } |
||
64 | } |