| Current Path : /home/rtorresani/www/generated/code/Magento/Framework/View/Layout/Reader/Move/ |
| Current File : //home/rtorresani/www/generated/code/Magento/Framework/View/Layout/Reader/Move/Interceptor.php |
<?php
namespace Magento\Framework\View\Layout\Reader\Move;
/**
* Interceptor class for @see \Magento\Framework\View\Layout\Reader\Move
*/
class Interceptor extends \Magento\Framework\View\Layout\Reader\Move implements \Magento\Framework\Interception\InterceptorInterface
{
use \Magento\Framework\Interception\Interceptor;
public function __construct()
{
$this->___init();
}
/**
* {@inheritdoc}
*/
public function getSupportedNodes()
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'getSupportedNodes');
return $pluginInfo ? $this->___callPlugins('getSupportedNodes', func_get_args(), $pluginInfo) : parent::getSupportedNodes();
}
/**
* {@inheritdoc}
*/
public function interpret(\Magento\Framework\View\Layout\Reader\Context $readerContext, \Magento\Framework\View\Layout\Element $currentElement)
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'interpret');
return $pluginInfo ? $this->___callPlugins('interpret', func_get_args(), $pluginInfo) : parent::interpret($readerContext, $currentElement);
}
}