<?php
namespace Alekseon\CustomFormsEmailNotification\Model\Email\EmailNotification;

/**
 * Interceptor class for @see \Alekseon\CustomFormsEmailNotification\Model\Email\EmailNotification
 */
class Interceptor extends \Alekseon\CustomFormsEmailNotification\Model\Email\EmailNotification implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Magento\Framework\Mail\Template\TransportBuilder $transportBuilder, \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Framework\Mail\Template\SenderResolverInterface $senderResolver, \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig, \Psr\Log\LoggerInterface $logger, \Magento\Framework\App\State $appState)
    {
        $this->___init();
        parent::__construct($transportBuilder, $storeManager, $senderResolver, $scopeConfig, $logger, $appState);
    }

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