From d551f340b8bb08ec2351aa040f94950e421a3c37 Mon Sep 17 00:00:00 2001 From: Matt Lehner Date: Tue, 17 Apr 2012 14:46:28 -0400 Subject: [PATCH] removed un-needed autoload function --- tests/bootstrap.php | 9 --------- 1 file changed, 9 deletions(-) diff --git a/tests/bootstrap.php b/tests/bootstrap.php index dc92e51d..ea4bb20d 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -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; - } -});