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 15e117e commit 47612b9Copy full SHA for 47612b9
PHP/CodeCoverage.php
@@ -477,6 +477,10 @@ protected function processUncoveredFilesFromWhitelist()
477
);
478
479
foreach ($uncoveredFiles as $uncoveredFile) {
480
+ if (!file_exists($uncoveredFile)) {
481
+ continue;
482
+ }
483
+
484
if ($this->cacheTokens) {
485
$tokens = PHP_Token_Stream_CachingFactory::get($uncoveredFile);
486
} else {
0 commit comments