We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1145763 commit 39b34bbCopy full SHA for 39b34bb
src/Factory.php
@@ -81,7 +81,9 @@ private function resolveWildcards(array $paths): array
81
if ($locals = glob($path, GLOB_ONLYDIR)) {
82
$_paths[] = array_map('\realpath', $locals);
83
} else {
84
+ // @codeCoverageIgnoreStart
85
$_paths[] = [realpath($path)];
86
+ // @codeCoverageIgnoreEnd
87
}
88
89
src/Iterator.php
@@ -48,7 +48,9 @@ public function accept(): bool
48
$realPath = $current->getRealPath();
49
50
if ($realPath === false) {
51
52
return false;
53
54
55
56
return $this->acceptPath($realPath) &&
0 commit comments