1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-22 05:41:20 +01:00

Improve cache clearing

This commit is contained in:
Matthew Brown 2016-11-04 22:04:55 -04:00
parent 7df4d74a7b
commit 2323d28238
2 changed files with 2 additions and 0 deletions

View File

@ -142,6 +142,7 @@ abstract class FunctionLikeChecker implements StatementsSource
if ($implemented_method_ids) {
$have_emitted = false;
foreach ($implemented_method_ids as $implemented_method_id) {
if ($have_emitted) {
break;

View File

@ -672,5 +672,6 @@ class MethodChecker extends FunctionLikeChecker
self::$have_reflected = [];
self::$have_registered = [];
self::$method_visibility = [];
self::$overridden_methods = [];
}
}