public function PHP_CodeCoverage_Filter::hasWhitelist

Returns whether this filter has a whitelist.

@since Method available since Release 1.1.0

Return value

boolean

File

drupal/core/vendor/phpunit/php-code-coverage/PHP/CodeCoverage/Filter.php, line 297

Class

PHP_CodeCoverage_Filter
Filter for blacklisting and whitelisting of code coverage information.

Code

public function hasWhitelist() {
  return !empty($this->whitelistedFiles);
}