Returns the collected code coverage data.
@since Method available since Release 1.1.0
array
public function getData() {
if ($this->addUncoveredFilesFromWhitelist) {
$this
->addUncoveredFilesFromWhitelist();
}
// We need to apply the blacklist filter a second time
// when no whitelist is used.
if (!$this->filter
->hasWhitelist()) {
$this
->applyListsFilter($this->data);
}
return $this->data;
}