<?php
namespace Firebear\ImportExport\Model\Import\ExportJobs;

/**
 * Interceptor class for @see \Firebear\ImportExport\Model\Import\ExportJobs
 */
class Interceptor extends \Firebear\ImportExport\Model\Import\ExportJobs implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Firebear\ImportExport\Model\Import\Context $context, \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig, \Magento\ImportExport\Model\ImportFactory $importFactory, \Firebear\ImportExport\Model\ExportJob\EventFactory $eventFactory, \Firebear\ImportExport\Api\ExportJobRepositoryInterface $exportJobRepository, \Firebear\ImportExport\Model\ExportJob\Converter $exportJobConverter, \Firebear\ImportExport\Model\ResourceModel\ExportJob\CollectionFactory $exportJobCollectionFactory, array $data = [])
    {
        $this->___init();
        parent::__construct($context, $scopeConfig, $importFactory, $eventFactory, $exportJobRepository, $exportJobConverter, $exportJobCollectionFactory, $data);
    }

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