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 7dc7ab2 commit 171113eCopy full SHA for 171113e
PHP/CodeCoverage.php
@@ -343,7 +343,10 @@ public function merge(PHP_CodeCoverage $that)
343
{
344
foreach ($that->data as $file => $lines) {
345
if (!isset($this->data[$file])) {
346
- $this->data[$file] = $lines;
+ if (!$this->filter->isFiltered($file, $this->currentFilterGroups)) {
347
+ $this->data[$file] = $lines;
348
+ }
349
+
350
continue;
351
}
352
0 commit comments