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