<?php
namespace Amasty\ShopbySeo\Model\SeoOptions;

/**
 * Interceptor class for @see \Amasty\ShopbySeo\Model\SeoOptions
 */
class Interceptor extends \Amasty\ShopbySeo\Model\SeoOptions implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Magento\Framework\Serialize\Serializer\Json $json, \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Framework\App\CacheInterface $cache, \Magento\Framework\App\Cache\StateInterface $cacheState, \Amasty\ShopbySeo\Model\SeoOptionsModifier\UniqueBuilder $uniqueBuilder, \Amasty\ShopbySeo\Model\Attribute\GetSeoAttributeMap $getSeoAttributeMap, array $modifiers = [])
    {
        $this->___init();
        parent::__construct($json, $storeManager, $cache, $cacheState, $uniqueBuilder, $getSeoAttributeMap, $modifiers);
    }

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

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