private function PHP_CodeCoverageTest::getLinesToBeIgnored in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/php-code-coverage/tests/PHP/CodeCoverageTest.php \PHP_CodeCoverageTest::getLinesToBeIgnored()
Return value
ReflectionMethod
File
- vendor/
phpunit/ php-code-coverage/ tests/ PHP/ CodeCoverageTest.php, line 460
Class
- PHP_CodeCoverageTest
- Tests for the PHP_CodeCoverage class.
Code
private function getLinesToBeIgnored() {
$getLinesToBeIgnored = new ReflectionMethod('PHP_CodeCoverage', 'getLinesToBeIgnored');
$getLinesToBeIgnored
->setAccessible(true);
return $getLinesToBeIgnored;
}