1
0
Fork 0

Avoid loading xdebug platform package twice, fixes #5995

pull/6001/merge
Jordi Boggiano 2016-12-28 17:38:45 +01:00
parent c5dcedd0db
commit 8764876cad
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ class PlatformRepository extends ArrayRepository
}
// Check for xdebug in a restarted process
if ($prettyVersion = strval(getenv(XdebugHandler::ENV_VERSION))) {
if (!in_array('xdebug', $loadedExtensions, true) && ($prettyVersion = strval(getenv(XdebugHandler::ENV_VERSION)))) {
$this->addExtension($versionParser, 'xdebug', $prettyVersion);
}