JBZoo\Utils\Sys::hasPHPDBGCodeCoverage PHP Méthode

hasPHPDBGCodeCoverage() public static méthode

Returns true when the runtime used is PHP with the PHPDBG SAPI and the phpdbg_*_oplog() functions are available (PHP >= 7.0).
public static hasPHPDBGCodeCoverage ( ) : boolean
Résultat boolean
    public static function hasPHPDBGCodeCoverage()
    {
        return self::isPHPDBG() && function_exists('phpdbg_start_oplog');
    }