26 lines
		
	
	
		
			771 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			771 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
<?php
 | 
						|
namespace Magento\Contact\Block\ContactForm;
 | 
						|
 | 
						|
/**
 | 
						|
 * Interceptor class for @see \Magento\Contact\Block\ContactForm
 | 
						|
 */
 | 
						|
class Interceptor extends \Magento\Contact\Block\ContactForm 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();
 | 
						|
    }
 | 
						|
}
 |