From 6613c928d22c9e2ebe290ca461cf142390dd9af0 Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Sat, 21 Oct 2023 15:52:52 +0200 Subject: [PATCH] Revert --- tests/TypeReconciliation/ReconcilerTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/TypeReconciliation/ReconcilerTest.php b/tests/TypeReconciliation/ReconcilerTest.php index 5c1b0a150f0..272029a6b8f 100644 --- a/tests/TypeReconciliation/ReconcilerTest.php +++ b/tests/TypeReconciliation/ReconcilerTest.php @@ -4,6 +4,7 @@ namespace Psalm\Tests\TypeReconciliation; +use Countable; use Psalm\Context; use Psalm\Internal\Analyzer\FileAnalyzer; use Psalm\Internal\Analyzer\StatementsAnalyzer; @@ -63,6 +64,7 @@ class A {} class B {} interface SomeInterface {} '); + $this->project_analyzer->getCodebase()->queueClassLikeForScanning(Countable::class); $this->project_analyzer->getCodebase()->scanFiles(); }