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