Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/app/code/Amasty/ExportCore/Export/Temp/
Upload File :
Current File : //home/rtorresani/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;
    }
}