1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-01 19:00:20 +02:00

removed un-needed autoload function

This commit is contained in:
Matt Lehner
2012-04-17 14:46:28 -04:00
parent b8e409d307
commit d551f340b8

View File

@@ -11,12 +11,3 @@
require_once __DIR__ . "/../vendor/.composer/autoload.php";
require_once __DIR__.'/Monolog/TestCase.php';
spl_autoload_register(function($class)
{
$file = __DIR__.'/../src/'.strtr($class, '\\', '/').'.php';
if (file_exists($file)) {
require $file;
return true;
}
});