Product   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
eloc 3
c 1
b 0
f 0
dl 0
loc 10
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getParamsWrapper() 0 3 1
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\Post;
11
12
use Ticaje\AeSdk\Api\Mediator\Base as ParentClass;
13
14
use Ticaje\AeSdk\Api\Traits\Mediator\ApiComplexMediator;
15
use Ticaje\AeSdk\Api\Traits\Mediator\ApiPostMediator;
16
use Ticaje\AeSdk\Api\Traits\Mediator\ApiMediator;
17
18
use Ticaje\AeSdk\Api\Interfaces\Post\ProductPostInterface;
19
20
/**
21
 * Class Product
22
 * @package Ticaje\AeSdk\Api\Mediator\Post
23
 */
24
class Product extends ParentClass implements ProductPostInterface
25
{
26
    use ApiMediator, ApiPostMediator, ApiComplexMediator;
27
28
    /**
29
     * @inheritDoc
30
     */
31
    public function getParamsWrapper(): string
32
    {
33
        return $this->getRequestWrapper('post');
34
    }
35
}
36