function XdebugHandler::isXdebugActive
Returns whether Xdebug is loaded and active
true: if Xdebug is loaded and is running in an active mode. false: if Xdebug is not loaded, or it is running with xdebug.mode=off.
2 calls to XdebugHandler::isXdebugActive()
- Application::doRun in vendor/
composer/ composer/ src/ Composer/ Console/ Application.php - Runs the current application.
- DiagnoseCommand::checkPlatform in vendor/
composer/ composer/ src/ Composer/ Command/ DiagnoseCommand.php
File
-
vendor/
composer/ xdebug-handler/ src/ XdebugHandler.php, line 251
Class
- XdebugHandler
- @author John Stevenson <john-stevenson@blueyonder.co.uk>
Namespace
Composer\XdebugHandlerCode
public static function isXdebugActive() : bool {
self::setXdebugDetails();
return self::$xdebugActive;
}