We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 879cb66 commit 2b75769Copy full SHA for 2b75769
src/CodeCoverage/Driver.php
@@ -140,7 +140,7 @@ protected function cleanup(array &$data)
140
private function filter(array &$data)
141
{
142
foreach (array_keys($data) as $filename) {
143
- if ($this->filter->isFiltered($filename)) {
+ if (!file_exists($filename) || $this->filter->isFiltered($filename)) {
144
unset($data[$filename]);
145
continue;
146
}
0 commit comments