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