Issues (14)

src/Entity/AbstractSaasClient.php (1 issue)

Severity
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
The parameter $param is not used and could be removed. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-unused  annotation

23
    public function addParamter(/** @scrutinizer ignore-unused */ SaasParameterInterface $param)

This check looks for parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
24
    {
25
        // Todo
26
    }
27
28
    public function removeParameter(SaasParameterInterface $parameter)
29
    {
30
        // Todo
31
    }
32
}
33