<?php
namespace Magento\CatalogSearch\Model\Search\RequestGenerator\Decimal;

/**
 * Interceptor class for @see \Magento\CatalogSearch\Model\Search\RequestGenerator\Decimal
 */
class Interceptor extends \Magento\CatalogSearch\Model\Search\RequestGenerator\Decimal implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct()
    {
        $this->___init();
    }

    /**
     * {@inheritdoc}
     */
    public function getFilterData(\Magento\Catalog\Model\ResourceModel\Eav\Attribute $attribute, $filterName)
    {
        $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getFilterData');
        return $pluginInfo ? $this->___callPlugins('getFilterData', func_get_args(), $pluginInfo) : parent::getFilterData($attribute, $filterName);
    }

    /**
     * {@inheritdoc}
     */
    public function getAggregationData(\Magento\Catalog\Model\ResourceModel\Eav\Attribute $attribute, $bucketName)
    {
        $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAggregationData');
        return $pluginInfo ? $this->___callPlugins('getAggregationData', func_get_args(), $pluginInfo) : parent::getAggregationData($attribute, $bucketName);
    }
}
