for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/**
* Api Class
* @category Ticaje
* @author Max Demian <[email protected]>
*/
namespace Ticaje\AeSdk\Api\Mediator\Post;
use Ticaje\AeSdk\Api\Mediator\Base as ParentClass;
use Ticaje\AeSdk\Api\Traits\Mediator\ApiComplexMediator;
use Ticaje\AeSdk\Api\Traits\Mediator\ApiPostMediator;
use Ticaje\AeSdk\Api\Traits\Mediator\ApiMediator;
use Ticaje\AeSdk\Api\Interfaces\Post\ProductPostInterface;
* Class Product
* @package Ticaje\AeSdk\Api\Mediator\Post
class Product extends ParentClass implements ProductPostInterface
{
use ApiMediator, ApiPostMediator, ApiComplexMediator;
* @inheritDoc
public function getParamsWrapper(): string
return $this->getRequestWrapper('post');
}