for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/**
* Request Provider Class
* @category Ticaje
* @author Max Demian <[email protected]>
*/
namespace Ticaje\AeSdk\Domain\Endpoint\Solution\Merchant\Profile;
use Ticaje\Contract\Patterns\Interfaces\Pool\WorkerInterface;
use Ticaje\Contract\Traits\BaseDto;
use Ticaje\AeSdk\Infrastructure\Builder\ServiceRequestBuilder;
use Ticaje\AeSdk\Domain\Interfaces\Request\ServiceRequestInterface;
* Class Get
* @package Ticaje\AeSdk\Domain\Endpoint\Solution\Merchant\Profile
class Get implements ServiceRequestInterface, WorkerInterface
{
use BaseDto, ServiceRequestBuilder;
private $apiMethodName = 'aliexpress.solution.merchant.profile.get';
$apiMethodName
public function getRequest(): array
return [];
}