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 ec3039c commit 6b14e55Copy full SHA for 6b14e55
PHP/CodeCoverage.php
@@ -477,7 +477,7 @@ protected function applyListsFilter(&$data)
477
protected function initializeFilesThatAreSeenTheFirstTime($data)
478
{
479
foreach ($data as $file => $lines) {
480
- if (!isset($this->data[$file])) {
+ if (is_file($file) && !isset($this->data[$file])) {
481
$this->checksums[$file] = sha1_file($file);
482
$this->data[$file] = array();
483
0 commit comments