Commit ab077c2f authored by jeroendedauw's avatar jeroendedauw

Remove not needed stuff from the PHPUnit boostrap file

parent 8dbf562d
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
/* /*
* This file bootstraps the test environment. * This file bootstraps the test environment.
*/ */
namespace Doctrine\Tests;
error_reporting(E_ALL | E_STRICT); error_reporting(E_ALL | E_STRICT);
...@@ -13,7 +12,7 @@ if (file_exists(__DIR__ . '/../../../vendor/autoload.php')) { ...@@ -13,7 +12,7 @@ if (file_exists(__DIR__ . '/../../../vendor/autoload.php')) {
// installed as a dependency in `vendor` // installed as a dependency in `vendor`
$classLoader = require __DIR__ . '/../../../../../autoload.php'; $classLoader = require __DIR__ . '/../../../../../autoload.php';
} else { } else {
throw new \Exception('Can\'t find autoload.php. Did you install dependencies via composer?'); throw new Exception('Can\'t find autoload.php. Did you install dependencies via Composer?');
} }
/* @var $classLoader \Composer\Autoload\ClassLoader */ /* @var $classLoader \Composer\Autoload\ClassLoader */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment