function PcovDriver::ensurePcovIsAvailable
Throws
1 call to PcovDriver::ensurePcovIsAvailable()
- PcovDriver::__construct in vendor/
phpunit/ php-code-coverage/ src/ Driver/ PcovDriver.php
File
-
vendor/
phpunit/ php-code-coverage/ src/ Driver/ PcovDriver.php, line 74
Class
- PcovDriver
- @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage
Namespace
SebastianBergmann\CodeCoverage\DriverCode
private function ensurePcovIsAvailable() : void {
if (!extension_loaded('pcov')) {
throw new PcovNotAvailableException();
}
}