JBZoo\Utils\Sys::hasPHPDBGCodeCoverage PHP Method

hasPHPDBGCodeCoverage() public static method

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
return boolean
    public static function hasPHPDBGCodeCoverage()
    {
        return self::isPHPDBG() && function_exists('phpdbg_start_oplog');
    }