| Current Path : /var/www/www.indacotrentino.com/www/generated/code/Magento/Email/Model/Transport/ |
| Current File : /var/www/www.indacotrentino.com/www/generated/code/Magento/Email/Model/Transport/Interceptor.php |
<?php
namespace Magento\Email\Model\Transport;
/**
* Interceptor class for @see \Magento\Email\Model\Transport
*/
class Interceptor extends \Magento\Email\Model\Transport implements \Magento\Framework\Interception\InterceptorInterface
{
use \Magento\Framework\Interception\Interceptor;
public function __construct(\Magento\Framework\Mail\MessageInterface $message, \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig, $parameters = null, ?\Psr\Log\LoggerInterface $logger = null)
{
$this->___init();
parent::__construct($message, $scopeConfig, $parameters, $logger);
}
/**
* {@inheritdoc}
*/
public function getTransport() : \Laminas\Mail\Transport\TransportInterface
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'getTransport');
return $pluginInfo ? $this->___callPlugins('getTransport', func_get_args(), $pluginInfo) : parent::getTransport();
}
/**
* {@inheritdoc}
*/
public function sendMessage()
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'sendMessage');
return $pluginInfo ? $this->___callPlugins('sendMessage', func_get_args(), $pluginInfo) : parent::sendMessage();
}
/**
* {@inheritdoc}
*/
public function getMessage()
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'getMessage');
return $pluginInfo ? $this->___callPlugins('getMessage', func_get_args(), $pluginInfo) : parent::getMessage();
}
}