| Current Path : /var/www/magento.test.indacotrentino.com/www/app/code/Amasty/ExportCore/Api/ |
| Current File : /var/www/magento.test.indacotrentino.com/www/app/code/Amasty/ExportCore/Api/FormInterface.php |
<?php
/**
* @author Amasty Team
* @copyright Copyright (c) Amasty (https://www.amasty.com)
* @package Export Core for Magento 2 (System)
*/
namespace Amasty\ExportCore\Api;
use Amasty\ExportCore\Api\Config\EntityConfigInterface;
use Amasty\ExportCore\Api\Config\ProfileConfigInterface;
use Magento\Framework\App\RequestInterface;
interface FormInterface
{
public function getMeta(EntityConfigInterface $entityConfig, array $arguments = []): array;
public function getData(ProfileConfigInterface $profileConfig): array;
public function prepareConfig(ProfileConfigInterface $profileConfig, RequestInterface $request): FormInterface;
}