Kahlan\Reporter\Coverage\Driver\HHVM::__construct PHP Method

__construct() public method

The Constructor.
public __construct ( array $config = [] )
$config array The options array, possible options are: - `'cleanup'` _boolean_: indicated if the coverage should be flushed on stop.
    public function __construct($config = [])
    {
        $defaults = ['cleanup' => true];
        $this->_config = $config;
        if (!defined('HHVM_VERSION')) {
            throw new RuntimeException('HHVM is not loaded.');
        }
    }