mirror of
https://github.com/danog/psalm.git
synced 2025-01-22 05:41:20 +01:00
Skip sub directories when parsing stubs
We now have the extensions in a sub directory and therefore have to skip that one.
This commit is contained in:
parent
ce4ba69e70
commit
a8f2b2b85a
@ -50,6 +50,9 @@ foreach (new RecursiveDirectoryIterator(
|
|||||||
__DIR__ . '/../stubs',
|
__DIR__ . '/../stubs',
|
||||||
FilesystemIterator::CURRENT_AS_PATHNAME|FilesystemIterator::SKIP_DOTS
|
FilesystemIterator::CURRENT_AS_PATHNAME|FilesystemIterator::SKIP_DOTS
|
||||||
) as $file) {
|
) as $file) {
|
||||||
|
if (is_dir($file)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
$contents = file_get_contents($file);
|
$contents = file_get_contents($file);
|
||||||
$stmts = $parser->parse($contents);
|
$stmts = $parser->parse($contents);
|
||||||
$stmts = $traverser->traverse($stmts);
|
$stmts = $traverser->traverse($stmts);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user