Prevent redefinition warning of PHPUNIT_RUN

remotes/origin/fix-delete-homeidr-on-userdelete
Thomas Müller 2015-11-19 12:36:00 +07:00
parent 7e71d8231e
commit 58cc3000c6
1 changed files with 3 additions and 1 deletions

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