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 d2bcb70 + 80abcf8 commit 417678aCopy full SHA for 417678a
tests/bootstrap.php
@@ -22,7 +22,9 @@
22
require_once 'vendor/autoload.php';
23
24
// Path constants to a few helpful things.
25
-define('DS', DIRECTORY_SEPARATOR);
+if (!defined('DS')) {
26
+ define('DS', DIRECTORY_SEPARATOR);
27
+}
28
define('ROOT', dirname(__DIR__));
29
define('CAKE_CORE_INCLUDE_PATH', ROOT . DS . 'vendor' . DS . 'cakephp' . DS . 'cakephp');
30
define('CORE_PATH', ROOT . DS . 'vendor' . DS . 'cakephp' . DS . 'cakephp' . DS);
0 commit comments