Chris@0: Chris@0: * Chris@0: * For the full copyright and license information, please view the LICENSE Chris@0: * file that was distributed with this source code. Chris@0: */ Chris@0: Chris@0: /** Chris@0: * Driver for HHVM's code coverage functionality. Chris@0: * Chris@0: * @since Class available since Release 2.2.2 Chris@0: * @codeCoverageIgnore Chris@0: */ Chris@0: class PHP_CodeCoverage_Driver_HHVM extends PHP_CodeCoverage_Driver_Xdebug Chris@0: { Chris@0: /** Chris@0: * Start collection of code coverage information. Chris@0: */ Chris@0: public function start() Chris@0: { Chris@0: xdebug_start_code_coverage(); Chris@0: } Chris@0: }