Add PHPDBG availability check

This commit is contained in:
Maurizio Moreo
2023-04-09 09:27:52 +02:00
parent 4520fe918a
commit 518035514e

View File

@ -46,6 +46,10 @@ final class Coverage
return true;
}
if ($runtime->hasPHPDBGCodeCoverage()) {
return true;
}
if (! $runtime->hasXdebug()) {
return true;
}