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