<?php
namespace Magento\Eav\Model\Entity\VersionControl\Metadata;

/**
 * Interceptor class for @see \Magento\Eav\Model\Entity\VersionControl\Metadata
 */
class Interceptor extends \Magento\Eav\Model\Entity\VersionControl\Metadata implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

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

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