<?php
namespace Leadlion\SolicitaMontaj\Block\Montaj;

/**
 * Interceptor class for @see \Leadlion\SolicitaMontaj\Block\Montaj
 */
class Interceptor extends \Leadlion\SolicitaMontaj\Block\Montaj implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Magento\Catalog\Api\CategoryRepositoryInterface $categoryRepository, \Leadlion\Autogedal\Helper\Config $helper, \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Framework\View\Element\Template\Context $context, \Magento\Catalog\Block\Product\View $product, \Magento\Catalog\Block\Category\View $category, \Magento\Framework\Session\SessionManager $session, \Magento\Catalog\Api\ProductRepositoryInterface $productRepository, \Magento\Checkout\Model\Session $_checkoutSession)
    {
        $this->___init();
        parent::__construct($categoryRepository, $helper, $storeManager, $context, $product, $category, $session, $productRepository, $_checkoutSession);
    }

    /**
     * {@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();
    }
}
