| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 40 | 6 | public function __call($method, $arguments) |
|
| 41 | { |
||
| 42 | 6 | $this->setUp(); |
|
| 43 | 6 | $class = __NAMESPACE__.'\\Methods\\'.$method; |
|
| 44 | 6 | $arguments = empty($arguments) ? [] : $arguments[0]; |
|
| 45 | 6 | $methodHandler = $this->prepareMethodHandler($arguments, $class); |
|
| 46 | |||
| 47 | 3 | return $this->client()->$method($methodHandler); |
|
| 48 | } |
||
| 49 | } |
||
| 50 |
This check marks private properties in classes that are never used. Those properties can be removed.