<?php
namespace Mageplaza\ProductAttachments\Model\Import\File;

/**
 * Interceptor class for @see \Mageplaza\ProductAttachments\Model\Import\File
 */
class Interceptor extends \Mageplaza\ProductAttachments\Model\Import\File implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Magento\Framework\Json\Helper\Data $jsonHelper, \Magento\ImportExport\Helper\Data $importExportData, \Magento\ImportExport\Model\ResourceModel\Import\Data $importData, \Magento\Eav\Model\Config $config, \Magento\Framework\App\ResourceConnection $resource, \Magento\ImportExport\Model\ResourceModel\Helper $resourceHelper, \Magento\Framework\Stdlib\StringUtils $string, \Magento\ImportExport\Model\Import\ErrorProcessing\ProcessingErrorAggregatorInterface $errorAggregator, \Magento\Customer\Model\GroupFactory $groupFactory, \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Framework\Stdlib\DateTime\DateTime $dateTime, \Mageplaza\ProductAttachments\Helper\Data $helperData, \Magento\CatalogImportExport\Model\Import\UploaderFactory $uploaderFactory, \Magento\Framework\Filesystem $filesystem, \Mageplaza\ProductAttachments\Model\Config\Source\Icon $iconList, \Mageplaza\ProductAttachments\Model\Config\Source\FileAction $fileAction, \Mageplaza\ProductAttachments\Model\FileFactory $fileModel)
    {
        $this->___init();
        parent::__construct($jsonHelper, $importExportData, $importData, $config, $resource, $resourceHelper, $string, $errorAggregator, $groupFactory, $storeManager, $dateTime, $helperData, $uploaderFactory, $filesystem, $iconList, $fileAction, $fileModel);
    }

    /**
     * {@inheritdoc}
     */
    public function isNeedToLogInHistory()
    {
        $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isNeedToLogInHistory');
        return $pluginInfo ? $this->___callPlugins('isNeedToLogInHistory', func_get_args(), $pluginInfo) : parent::isNeedToLogInHistory();
    }
}
