File: //usr/share/php/Symfony/Component/Templating/autoload.php
<?php
// suggest:
if (stream_resolve_include_path('Psr/Log/autoload.php')){
include_once 'Psr/Log/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\\templating\\delegatingengine' => '/DelegatingEngine.php',
'symfony\\component\\templating\\engineinterface' => '/EngineInterface.php',
'symfony\\component\\templating\\helper\\helper' => '/Helper/Helper.php',
'symfony\\component\\templating\\helper\\helperinterface' => '/Helper/HelperInterface.php',
'symfony\\component\\templating\\helper\\slotshelper' => '/Helper/SlotsHelper.php',
'symfony\\component\\templating\\loader\\cacheloader' => '/Loader/CacheLoader.php',
'symfony\\component\\templating\\loader\\chainloader' => '/Loader/ChainLoader.php',
'symfony\\component\\templating\\loader\\filesystemloader' => '/Loader/FilesystemLoader.php',
'symfony\\component\\templating\\loader\\loader' => '/Loader/Loader.php',
'symfony\\component\\templating\\loader\\loaderinterface' => '/Loader/LoaderInterface.php',
'symfony\\component\\templating\\phpengine' => '/PhpEngine.php',
'symfony\\component\\templating\\storage\\filestorage' => '/Storage/FileStorage.php',
'symfony\\component\\templating\\storage\\storage' => '/Storage/Storage.php',
'symfony\\component\\templating\\storage\\stringstorage' => '/Storage/StringStorage.php',
'symfony\\component\\templating\\streamingengineinterface' => '/StreamingEngineInterface.php',
'symfony\\component\\templating\\templatenameparser' => '/TemplateNameParser.php',
'symfony\\component\\templating\\templatenameparserinterface' => '/TemplateNameParserInterface.php',
'symfony\\component\\templating\\templatereference' => '/TemplateReference.php',
'symfony\\component\\templating\\templatereferenceinterface' => '/TemplateReferenceInterface.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn]) and file_exists(__DIR__ . $classes[$cn])) {
require __DIR__ . $classes[$cn];
}
},
true,
false
);
// @codeCoverageIgnoreEnd