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