<?php
namespace Amasty\Shopby\Block\Navigation\Top\State;

/**
 * Interceptor class for @see \Amasty\Shopby\Block\Navigation\Top\State
 */
class Interceptor extends \Amasty\Shopby\Block\Navigation\Top\State implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Magento\Framework\View\Element\Template\Context $context, \Magento\Catalog\Model\Layer\Resolver $layerResolver, \Amasty\Shopby\Helper\FilterSetting $filterSettingHelper, \Magento\Framework\Pricing\PriceCurrencyInterface $priceCurrency, \Amasty\Shopby\Helper\Data $helper, \Magento\Framework\View\Element\BlockFactory $blockFactory, \Amasty\ShopbyBase\Api\UrlBuilderInterface $urlBuilder, \Amasty\ShopbyBase\Model\FilterSetting\IsShowProductQuantities $isShowProductQuantities, \Amasty\ShopbyBase\Model\FilterSetting\IsMultiselect $isMultiselect, \Amasty\Shopby\Model\Price\GetPrecisionValue $getPrecisionValue, \Amasty\Shopby\Model\Config\MobileConfigResolver $mobileConfigResolver, \Amasty\ShopbyBase\Model\FilterSetting\FilterResolver $filterResolver, \Amasty\Shopby\Model\ConfigProvider $configProvider, array $data = [])
    {
        $this->___init();
        parent::__construct($context, $layerResolver, $filterSettingHelper, $priceCurrency, $helper, $blockFactory, $urlBuilder, $isShowProductQuantities, $isMultiselect, $getPrecisionValue, $mobileConfigResolver, $filterResolver, $configProvider, $data);
    }

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

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