Chris@14: Chris@14: * Chris@14: * For the full copyright and license information, please view the LICENSE Chris@14: * file that was distributed with this source code. Chris@14: */ Chris@14: Chris@14: namespace SebastianBergmann\CodeCoverage\Driver; Chris@14: Chris@14: /** Chris@14: * Driver for HHVM's code coverage functionality. Chris@14: * Chris@14: * @codeCoverageIgnore Chris@14: */ Chris@14: class HHVM extends Xdebug Chris@14: { Chris@14: /** Chris@14: * Start collection of code coverage information. Chris@14: * Chris@14: * @param bool $determineUnusedAndDead Chris@14: */ Chris@14: public function start($determineUnusedAndDead = true) Chris@14: { Chris@14: \xdebug_start_code_coverage(); Chris@14: } Chris@14: }