Commit 3eebba76 authored by Marco Pivetta's avatar Marco Pivetta

Merge pull request #644 from JeroenDeDauw/bootstrap

Remove not needed stuff from the PHPUnit boostrap file
parents 7386b2cc ab077c2f
......@@ -2,7 +2,6 @@
/*
* This file bootstraps the test environment.
*/
namespace Doctrine\Tests;
error_reporting(E_ALL | E_STRICT);
......@@ -13,7 +12,7 @@ if (file_exists(__DIR__ . '/../../../vendor/autoload.php')) {
// installed as a dependency in `vendor`
$classLoader = require __DIR__ . '/../../../../../autoload.php';
} 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 */
......
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