| Current Path : /var/www/clients/client3/web2/web/generated/code/Magento/User/Block/Buttons/ |
| Current File : /var/www/clients/client3/web2/web/generated/code/Magento/User/Block/Buttons/Interceptor.php |
<?php
namespace Magento\User\Block\Buttons;
/**
* Interceptor class for @see \Magento\User\Block\Buttons
*/
class Interceptor extends \Magento\User\Block\Buttons implements \Magento\Framework\Interception\InterceptorInterface
{
use \Magento\Framework\Interception\Interceptor;
public function __construct(\Magento\Backend\Block\Template\Context $context, \Magento\Framework\Registry $registry, array $data = [])
{
$this->___init();
parent::__construct($context, $registry, $data);
}
/**
* {@inheritdoc}
*/
public function toHtml()
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'toHtml');
return $pluginInfo ? $this->___callPlugins('toHtml', func_get_args(), $pluginInfo) : parent::toHtml();
}
}