1<?php 2/* 3 * This file is part of the php-code-coverage package. 4 * 5 * (c) Sebastian Bergmann <sebastian@phpunit.de> 6 * 7 * For the full copyright and license information, please view the LICENSE 8 * file that was distributed with this source code. 9 */ 10 11namespace SebastianBergmann\CodeCoverage\Driver; 12 13/** 14 * Driver for HHVM's code coverage functionality. 15 * 16 * @codeCoverageIgnore 17 */ 18class HHVM extends Xdebug 19{ 20 /** 21 * Start collection of code coverage information. 22 * 23 * @param bool $determineUnusedAndDead 24 */ 25 public function start($determineUnusedAndDead = true) 26 { 27 xdebug_start_code_coverage(); 28 } 29} 30