Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
32 | 2 | public function __call($name, array $arguments) |
|
33 | { |
||
34 | 2 | $benchmark = $this->getProfiler()->start($this->getBenchmarkName($name), $arguments, $this->getComponentName()); |
|
35 | 2 | $result = call_user_func_array([$this->getDecorated(), $name], $arguments); |
|
36 | 2 | $this->getProfiler()->stop($benchmark); |
|
37 | 2 | return $result; |
|
38 | } |
||
39 | |||
80 | } |