File: //usr/share/php/Symfony/Bundle/WebProfilerBundle/autoload.php
<?php
// require:
require_once 'Symfony/Component/Config/autoload.php';
require_once 'Symfony/Component/HttpKernel/autoload.php';
require_once 'Symfony/Component/Routing/autoload.php';
require_once 'Symfony/Bundle/TwigBundle/autoload.php';
require_once 'Symfony/Component/VarDumper/autoload.php';
require_once 'Twig/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\\bundle\\webprofilerbundle\\controller\\exceptioncontroller' => '/Controller/ExceptionController.php',
'symfony\\bundle\\webprofilerbundle\\controller\\profilercontroller' => '/Controller/ProfilerController.php',
'symfony\\bundle\\webprofilerbundle\\controller\\routercontroller' => '/Controller/RouterController.php',
'symfony\\bundle\\webprofilerbundle\\csp\\contentsecuritypolicyhandler' => '/Csp/ContentSecurityPolicyHandler.php',
'symfony\\bundle\\webprofilerbundle\\csp\\noncegenerator' => '/Csp/NonceGenerator.php',
'symfony\\bundle\\webprofilerbundle\\dependencyinjection\\configuration' => '/DependencyInjection/Configuration.php',
'symfony\\bundle\\webprofilerbundle\\dependencyinjection\\webprofilerextension' => '/DependencyInjection/WebProfilerExtension.php',
'symfony\\bundle\\webprofilerbundle\\eventlistener\\webdebugtoolbarlistener' => '/EventListener/WebDebugToolbarListener.php',
'symfony\\bundle\\webprofilerbundle\\profiler\\templatemanager' => '/Profiler/TemplateManager.php',
'symfony\\bundle\\webprofilerbundle\\twig\\webprofilerextension' => '/Twig/WebProfilerExtension.php',
'symfony\\bundle\\webprofilerbundle\\webprofilerbundle' => '/WebProfilerBundle.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn]) and file_exists(__DIR__ . $classes[$cn])) {
require __DIR__ . $classes[$cn];
}
},
true,
false
);
// @codeCoverageIgnoreEnd