File: //usr/share/php/Symfony/Component/Mailer/Bridge/Mailchimp/autoload.php
<?php
// require:
require_once 'Symfony/Component/Mailer/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\\bridge\\mailchimp\\http\\api\\mandrilltransport' => '/Http/Api/MandrillTransport.php',
'symfony\\component\\mailer\\bridge\\mailchimp\\http\\mandrilltransport' => '/Http/MandrillTransport.php',
'symfony\\component\\mailer\\bridge\\mailchimp\\smtp\\mandrilltransport' => '/Smtp/MandrillTransport.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn]) and file_exists(__DIR__ . $classes[$cn])) {
require __DIR__ . $classes[$cn];
}
},
true,
false
);
// @codeCoverageIgnoreEnd