1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-22 13:51:54 +01:00

Fix addition of Psalm classes

This commit is contained in:
Brown 2020-01-08 17:47:30 -05:00
parent eb7a8ae8d2
commit 55bf6333af

View File

@ -21,7 +21,7 @@ class StubsGenerator
$psalm_base = dirname(__DIR__, 5); $psalm_base = dirname(__DIR__, 5);
foreach ($all_class_storage as $storage) { foreach ($all_class_storage as $storage) {
if (strpos($storage->name, 'Psalm\\')) { if (\strpos($storage->name, 'Psalm\\') === 0) {
continue; continue;
} }