| Total Complexity | 2 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | abstract class Rpc extends RpcRequest |
||
| 17 | { |
||
| 18 | use ActionResolverTrait; |
||
| 19 | use CallTrait; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param array $options |
||
| 23 | * |
||
| 24 | * @throws ReflectionException |
||
| 25 | * @throws ClientException |
||
| 26 | */ |
||
| 27 | public function __construct(array $options = []) |
||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @return mixed |
||
| 37 | */ |
||
| 38 | private function ¶meterPosition() |
||
| 43 |
This check looks for private methods that have been defined, but are not used inside the class.