Browse Source

removed un-needed autoload function

Matt Lehner 13 years ago
parent
commit
d551f340b8
1 changed files with 0 additions and 9 deletions
  1. 0 9
      tests/bootstrap.php

+ 0 - 9
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;
-    }
-});