We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 160cb1a + e2440e7 commit d1485bbCopy full SHA for d1485bb
tests/bootstrap.php
@@ -9,6 +9,12 @@
9
*/
10
const TEST_FILES_PATH = __DIR__ . DIRECTORY_SEPARATOR . '_files' . DIRECTORY_SEPARATOR;
11
12
+if (file_exists(__DIR__ . '/../vendor/autoload.php') && file_exists(__DIR__ . '/autoload.php')) {
13
+ print 'More than one test fixture autoloader is available, exiting.' . \PHP_EOL;
14
+
15
+ exit(1);
16
+}
17
18
if (file_exists(__DIR__ . '/../vendor/autoload.php')) {
19
if (!defined('PHPUNIT_COMPOSER_INSTALL')) {
20
define('PHPUNIT_COMPOSER_INSTALL', dirname(__DIR__) . '/vendor/autoload.php');
0 commit comments