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 b62faf9 commit b45fa0fCopy full SHA for b45fa0f
PHP/CodeCoverage.php
@@ -351,6 +351,9 @@ public function getSummary()
351
352
foreach ($this->data as $test => $coverage) {
353
foreach ($coverage['filtered'] as $file => $lines) {
354
+ if (strncmp($file, 'phar://', 7) === 0) {
355
+ continue;
356
+ }
357
foreach ($lines as $line => $flag) {
358
if ($flag == 1) {
359
if (!isset($this->summary[$file][$line][0])) {
@@ -371,6 +374,9 @@ public function getSummary()
371
374
}
372
375
373
376
foreach ($coverage['raw'] as $file => $lines) {
377
378
379
380
381
if ($flag != 1 &&
382
!isset($this->summary[$file][$line][0])) {
0 commit comments