<?php
namespace Mageplaza\Osc\Block\Checkout\LayoutProcessor;

/**
 * Interceptor class for @see \Mageplaza\Osc\Block\Checkout\LayoutProcessor
 */
class Interceptor extends \Mageplaza\Osc\Block\Checkout\LayoutProcessor implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Magento\Checkout\Model\Session $checkoutSession, \Mageplaza\Osc\Helper\Address $oscHelper, \Magento\Customer\Model\AttributeMetadataDataProvider $attributeMetadataDataProvider, \Magento\Ui\Component\Form\AttributeMapper $attributeMapper, \Magento\Checkout\Block\Checkout\AttributeMerger $merger, \Magento\Customer\Model\Options $options)
    {
        $this->___init();
        parent::__construct($checkoutSession, $oscHelper, $attributeMetadataDataProvider, $attributeMapper, $merger, $options);
    }

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