File: //usr/share/php/Symfony/Bridge/ProxyManager/autoload.php
<?php
// require:
require_once 'Symfony/Component/DependencyInjection/autoload.php';
require_once 'ProxyManager/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\\bridge\\proxymanager\\lazyproxy\\instantiator\\lazyloadingvalueholderfactory' => '/LazyProxy/Instantiator/LazyLoadingValueHolderFactory.php',
'symfony\\bridge\\proxymanager\\lazyproxy\\instantiator\\runtimeinstantiator' => '/LazyProxy/Instantiator/RuntimeInstantiator.php',
'symfony\\bridge\\proxymanager\\lazyproxy\\phpdumper\\lazyloadingvalueholdergenerator' => '/LazyProxy/PhpDumper/LazyLoadingValueHolderGenerator.php',
'symfony\\bridge\\proxymanager\\lazyproxy\\phpdumper\\proxydumper' => '/LazyProxy/PhpDumper/ProxyDumper.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn]) and file_exists(__DIR__ . $classes[$cn])) {
require __DIR__ . $classes[$cn];
}
},
true,
false
);
// @codeCoverageIgnoreEnd