File: //usr/share/php/Symfony/Bundle/DebugBundle/autoload.php
<?php
// require:
require_once 'Symfony/Component/HttpKernel/autoload.php';
require_once 'Symfony/Bridge/Twig/autoload.php';
require_once 'Symfony/Component/VarDumper/autoload.php';
// suggest:
if (stream_resolve_include_path('Symfony/Component/Config/autoload.php')){
include_once 'Symfony/Component/Config/autoload.php';
}
if (stream_resolve_include_path('Symfony/Component/DependencyInjection/autoload.php')){
include_once 'Symfony/Component/DependencyInjection/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\\debugbundle\\command\\serverdumpplaceholdercommand' => '/Command/ServerDumpPlaceholderCommand.php',
'symfony\\bundle\\debugbundle\\debugbundle' => '/DebugBundle.php',
'symfony\\bundle\\debugbundle\\dependencyinjection\\compiler\\dumpdatacollectorpass' => '/DependencyInjection/Compiler/DumpDataCollectorPass.php',
'symfony\\bundle\\debugbundle\\dependencyinjection\\configuration' => '/DependencyInjection/Configuration.php',
'symfony\\bundle\\debugbundle\\dependencyinjection\\debugextension' => '/DependencyInjection/DebugExtension.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn]) and file_exists(__DIR__ . $classes[$cn])) {
require __DIR__ . $classes[$cn];
}
},
true,
false
);
// @codeCoverageIgnoreEnd