You are here

public function PHP_CodeCoverage_Filter::getBlacklist in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/php-code-coverage/src/CodeCoverage/Filter.php \PHP_CodeCoverage_Filter::getBlacklist()

Returns the list of blacklisted files.

Return value

array

File

vendor/phpunit/php-code-coverage/src/CodeCoverage/Filter.php, line 224

Class

PHP_CodeCoverage_Filter
Filter for blacklisting and whitelisting of code coverage information.

Code

public function getBlacklist() {
  return array_keys($this->blacklistedFiles);
}