File: //usr/share/php/Symfony/Component/Mailer/autoload.php
<?php
// require:
require_once 'Egulias/EmailValidator/autoload.php';
require_once 'Psr/Log/autoload.php';
require_once 'Symfony/Component/EventDispatcher/autoload.php';
require_once 'Symfony/Component/Mime/autoload.php';
// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
spl_autoload_register(
function($class) {
static $classes = null;
if ($classes === null) {
$classes = array(
'symfony\\component\\mailer\\delayedsmtpenvelope' => '/DelayedSmtpEnvelope.php',
'symfony\\component\\mailer\\event\\messageevent' => '/Event/MessageEvent.php',
'symfony\\component\\mailer\\eventlistener\\envelopelistener' => '/EventListener/EnvelopeListener.php',
'symfony\\component\\mailer\\eventlistener\\messagelistener' => '/EventListener/MessageListener.php',
'symfony\\component\\mailer\\exception\\exceptioninterface' => '/Exception/ExceptionInterface.php',
'symfony\\component\\mailer\\exception\\httptransportexception' => '/Exception/HttpTransportException.php',
'symfony\\component\\mailer\\exception\\invalidargumentexception' => '/Exception/InvalidArgumentException.php',
'symfony\\component\\mailer\\exception\\logicexception' => '/Exception/LogicException.php',
'symfony\\component\\mailer\\exception\\runtimeexception' => '/Exception/RuntimeException.php',
'symfony\\component\\mailer\\exception\\transportexception' => '/Exception/TransportException.php',
'symfony\\component\\mailer\\exception\\transportexceptioninterface' => '/Exception/TransportExceptionInterface.php',
'symfony\\component\\mailer\\mailer' => '/Mailer.php',
'symfony\\component\\mailer\\mailerinterface' => '/MailerInterface.php',
'symfony\\component\\mailer\\messenger\\messagehandler' => '/Messenger/MessageHandler.php',
'symfony\\component\\mailer\\messenger\\sendemailmessage' => '/Messenger/SendEmailMessage.php',
'symfony\\component\\mailer\\sentmessage' => '/SentMessage.php',
'symfony\\component\\mailer\\smtpenvelope' => '/SmtpEnvelope.php',
'symfony\\component\\mailer\\transport' => '/Transport.php',
'symfony\\component\\mailer\\transport\\abstracttransport' => '/Transport/AbstractTransport.php',
'symfony\\component\\mailer\\transport\\failovertransport' => '/Transport/FailoverTransport.php',
'symfony\\component\\mailer\\transport\\http\\abstracthttptransport' => '/Transport/Http/AbstractHttpTransport.php',
'symfony\\component\\mailer\\transport\\http\\api\\abstractapitransport' => '/Transport/Http/Api/AbstractApiTransport.php',
'symfony\\component\\mailer\\transport\\nulltransport' => '/Transport/NullTransport.php',
'symfony\\component\\mailer\\transport\\roundrobintransport' => '/Transport/RoundRobinTransport.php',
'symfony\\component\\mailer\\transport\\sendmailtransport' => '/Transport/SendmailTransport.php',
'symfony\\component\\mailer\\transport\\smtp\\auth\\authenticatorinterface' => '/Transport/Smtp/Auth/AuthenticatorInterface.php',
'symfony\\component\\mailer\\transport\\smtp\\auth\\crammd5authenticator' => '/Transport/Smtp/Auth/CramMd5Authenticator.php',
'symfony\\component\\mailer\\transport\\smtp\\auth\\loginauthenticator' => '/Transport/Smtp/Auth/LoginAuthenticator.php',
'symfony\\component\\mailer\\transport\\smtp\\auth\\plainauthenticator' => '/Transport/Smtp/Auth/PlainAuthenticator.php',
'symfony\\component\\mailer\\transport\\smtp\\auth\\xoauth2authenticator' => '/Transport/Smtp/Auth/XOAuth2Authenticator.php',
'symfony\\component\\mailer\\transport\\smtp\\esmtptransport' => '/Transport/Smtp/EsmtpTransport.php',
'symfony\\component\\mailer\\transport\\smtp\\smtptransport' => '/Transport/Smtp/SmtpTransport.php',
'symfony\\component\\mailer\\transport\\smtp\\stream\\abstractstream' => '/Transport/Smtp/Stream/AbstractStream.php',
'symfony\\component\\mailer\\transport\\smtp\\stream\\processstream' => '/Transport/Smtp/Stream/ProcessStream.php',
'symfony\\component\\mailer\\transport\\smtp\\stream\\socketstream' => '/Transport/Smtp/Stream/SocketStream.php',
'symfony\\component\\mailer\\transport\\transportinterface' => '/Transport/TransportInterface.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn]) and file_exists(__DIR__ . $classes[$cn])) {
require __DIR__ . $classes[$cn];
}
},
true,
false
);
// @codeCoverageIgnoreEnd