HHVM.php 643 B

1234567891011121314151617181920212223242526272829
  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. namespace SebastianBergmann\CodeCoverage\Driver;
  11. /**
  12. * Driver for HHVM's code coverage functionality.
  13. *
  14. * @codeCoverageIgnore
  15. */
  16. class HHVM extends Xdebug
  17. {
  18. /**
  19. * Start collection of code coverage information.
  20. *
  21. * @param bool $determineUnusedAndDead
  22. */
  23. public function start($determineUnusedAndDead = true)
  24. {
  25. xdebug_start_code_coverage();
  26. }
  27. }