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

/**
 * Interceptor class for @see \Firebear\ImportExport\Model\Import\NewsletterSubscriber
 */
class Interceptor extends \Firebear\ImportExport\Model\Import\NewsletterSubscriber 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, \Magento\Newsletter\Model\SubscriberFactory $subscriberFactory, \Magento\Customer\Model\CustomerFactory $customerFactory, \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Framework\Encryption\EncryptorInterface $encryptor, array $data = [])
    {
        $this->___init();
        parent::__construct($context, $scopeConfig, $importFactory, $subscriberFactory, $customerFactory, $storeManager, $encryptor, $data);
    }

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