| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php /** ConnectionMicro */ |
||
| 59 | public function __call($name, $arguments) |
||
| 60 | { |
||
| 61 | if (!method_exists($this->driver, $name)) { |
||
| 62 | throw new \BadMethodCallException('Method `` not found in connection driver ``'); |
||
| 63 | } |
||
| 64 | |||
| 65 | return call_user_func_array([$this->driver, $name], $arguments); |
||
| 66 | } |
||
| 67 | } |
||
| 68 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.