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

/**
 * Interceptor class for @see \Firebear\ImportExport\Model\Import\Customer
 */
class Interceptor extends \Firebear\ImportExport\Model\Import\Customer 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\Store\Model\StoreManagerInterface $storeManager, \Magento\ImportExport\Model\Export\Factory $collectionFactory, \Magento\CustomerImportExport\Model\ResourceModel\Import\Customer\StorageFactory $storageFactory, \Magento\Customer\Model\ResourceModel\Attribute\CollectionFactory $attrCollectionFactory, \Magento\Customer\Model\CustomerFactory $customerFactory, \Symfony\Component\Console\Output\ConsoleOutput $output, \Firebear\ImportExport\Helper\Data $helper, \Magento\Customer\Model\GroupFactory $groupFactory, \Magento\Customer\Model\ResourceModel\Group\Collection $customerGroup, \Magento\Tax\Model\ResourceModel\TaxClass\Collection $taxClassCollection, array $data = [])
    {
        $this->___init();
        parent::__construct($context, $scopeConfig, $importFactory, $storeManager, $collectionFactory, $storageFactory, $attrCollectionFactory, $customerFactory, $output, $helper, $groupFactory, $customerGroup, $taxClassCollection, $data);
    }

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