Add PCOV availability check

This commit is contained in:
Maurizio Moreo
2023-04-07 17:19:34 +02:00
parent f73e6aebcb
commit 4520fe918a

View File

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