File "autoloader.php"
Full Path: /home/attunedd/public_html/byp/izo/con7ext_sym404/rintoar.txt/opt/alt/php54/usr/share/pear/Symfony/Component/HttpKernel/autoloader.php
File size: 340 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
spl_autoload_register(function ($class) {
if ('\\' == $class[0]) {
$class = substr($class, 1);
}
if (
0 === strpos($class, 'Symfony\\Component\\HttpKernel\\')
&&
file_exists($file = __DIR__.'/../../../'.str_replace('\\', '/', $class).'.php')
) {
require_once $file;
}
});