<?php
namespace Magento\Catalog\Model\Config\Source\LayoutList;

/**
 * Interceptor class for @see \Magento\Catalog\Model\Config\Source\LayoutList
 */
class Interceptor extends \Magento\Catalog\Model\Config\Source\LayoutList implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Magento\Catalog\Model\Product\Attribute\Source\Layout $layoutSource)
    {
        $this->___init();
        parent::__construct($layoutSource);
    }

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