Prevent redefinition warning of PHPUNIT_RUN

This commit is contained in:
Thomas Müller 2015-11-19 12:36:00 +01:00
parent 7e71d8231e
commit 58cc3000c6
1 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,8 @@
<?php
define('PHPUNIT_RUN', 1);
if (!defined('PHPUNIT_RUN')) {
define('PHPUNIT_RUN', 1);
}
require_once __DIR__.'/../../../../lib/base.php';