| Current Path : /var/www/www.indacotrentino.com/www/app/code/Amasty/ExportCore/Export/Temp/ |
| Current File : //var/www/www.indacotrentino.com/www/app/code/Amasty/ExportCore/Export/Temp/Helper.php |
<?php
/**
* @author Amasty Team
* @copyright Copyright (c) Amasty (https://www.amasty.com)
* @package Export Core for Magento 2 (System)
*/
namespace Amasty\ExportCore\Export\Temp;
/**
* temporary solution
*/
class Helper
{
/**
* @var array
*/
private $headerStructure;
public function setHeaderStructure(array $headerStructure): Helper
{
$this->headerStructure = $headerStructure;
return $this;
}
public function getHeaderStructure(): ?array
{
return $this->headerStructure;
}
}