Total Complexity | 3 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | abstract class AbstractSaasClient implements SaasClientInterface |
||
16 | { |
||
17 | public function getSaasParameters(): array |
||
18 | { |
||
19 | // Todo |
||
20 | return []; |
||
21 | } |
||
22 | |||
23 | public function addParamter(SaasParameterInterface $param) |
||
|
|||
24 | { |
||
25 | // Todo |
||
26 | } |
||
27 | |||
28 | public function removeParameter(SaasParameterInterface $parameter) |
||
30 | // Todo |
||
31 | } |
||
32 | } |
||
33 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.