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.
1 parent 0f0f140 commit a8e06f4Copy full SHA for a8e06f4
dev/tests/acceptance/tests/_bootstrap.php
@@ -24,7 +24,7 @@
24
defined('FW_BP') || define('FW_BP', PROJECT_ROOT . $RELATIVE_FW_PATH);
25
26
// add the debug flag here
27
-$debug_mode = (bool)$_ENV['MFTF_DEBUG'] ?? false;
28
-if (!$debug_mode && extension_loaded('xdebug')) {
+$debug_mode = $_ENV['MFTF_DEBUG'] ?? false;
+if (!(bool)$debug_mode && extension_loaded('xdebug')) {
29
xdebug_disable();
30
}
0 commit comments