1 | <?php |
||
2 | |||
3 | /* |
||
4 | * This file is part of the SaasProviderBundle package. |
||
5 | * (c) Fluxter <http://fluxter.net/> |
||
6 | * For the full copyright and license information, please view the LICENSE |
||
7 | * file that was distributed with this source code. |
||
8 | */ |
||
9 | |||
10 | namespace Fluxter\SaasProviderBundle\Entity; |
||
11 | |||
12 | use Fluxter\SaasProviderBundle\Model\SaasClientInterface; |
||
13 | use Fluxter\SaasProviderBundle\Model\SaasParameterInterface; |
||
14 | |||
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) |
||
0 ignored issues
–
show
|
|||
24 | { |
||
25 | // Todo |
||
26 | } |
||
27 | |||
28 | public function removeParameter(SaasParameterInterface $parameter) |
||
29 | { |
||
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.