<?php
namespace Autogedal\Extend\Block\RickSnippet;

/**
 * Interceptor class for @see \Autogedal\Extend\Block\RickSnippet
 */
class Interceptor extends \Autogedal\Extend\Block\RickSnippet implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Magento\Catalog\Block\Product\Context $productContext, \Magento\Review\Model\Review\SummaryFactory $reviewSummaryFactory, \Magento\Framework\View\Element\Template\Context $context, \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Catalog\Model\Product\Gallery\ImagesConfigFactoryInterface $galleryImagesConfigFactory, \Magento\Catalog\Model\Product\Image\UrlBuilder $urlBuilder, \Autogedal\Extend\Model\CategoryHierarchy $catHeirarchy, \Magento\Review\Model\ResourceModel\Review\CollectionFactory $collectionFactory, \Magento\Review\Model\ResourceModel\Rating\Option\Vote\CollectionFactory $voteCollection, \Magento\Framework\Serialize\SerializerInterface $serializer, \Magento\Catalog\Helper\Output $attributeHelper, \Magento\Framework\App\ResourceConnection $resource, \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig, array $galleryImagesConfig = [], array $data = [])
    {
        $this->___init();
        parent::__construct($productContext, $reviewSummaryFactory, $context, $storeManager, $galleryImagesConfigFactory, $urlBuilder, $catHeirarchy, $collectionFactory, $voteCollection, $serializer, $attributeHelper, $resource, $scopeConfig, $galleryImagesConfig, $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();
    }
}
