Product::getParamsWrapper()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
nc 1
nop 0
1
<?php
2
declare(strict_types=1);
3
4
/**
5
 * Api Class
6
 * @category    Ticaje
7
 * @author      Max Demian <[email protected]>
8
 */
9
10
namespace Ticaje\AeSdk\Api\Mediator\Delete;
11
12
use Ticaje\AeSdk\Api\Mediator\Base as ParentClass;
13
14
use Ticaje\AeSdk\Api\Traits\Mediator\ApiMediator;
15
16
use Ticaje\AeSdk\Api\Interfaces\Post\ProductPostInterface;
17
18
/**
19
 * Class Product
20
 * @package Ticaje\AeSdk\Api\Mediator\Post
21
 */
22
class Product extends ParentClass implements ProductPostInterface
23
{
24
    use ApiMediator, ApiPostMediator, ApiComplexMediator;
0 ignored issues
show
Bug introduced by
The type Ticaje\AeSdk\Api\Mediato...lete\ApiComplexMediator was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
Bug introduced by
The type Ticaje\AeSdk\Api\Mediator\Delete\ApiPostMediator was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
25
26
    /**
27
     * @inheritDoc
28
     */
29
    public function getParamsWrapper(): string
30
    {
31
        return $this->getRequestWrapper('post');
32
    }
33
}
34