From 620c7cd68a36604a0b558b4588b2b9c84f633d13 Mon Sep 17 00:00:00 2001 From: robchett Date: Sat, 17 Jun 2023 14:58:58 +0100 Subject: [PATCH] Fix bug surfaced from removal of elseif scope modification --- tests/Internal/Codebase/InternalCallMapHandlerTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Internal/Codebase/InternalCallMapHandlerTest.php b/tests/Internal/Codebase/InternalCallMapHandlerTest.php index 0957efa50..c3e0d0ad9 100644 --- a/tests/Internal/Codebase/InternalCallMapHandlerTest.php +++ b/tests/Internal/Codebase/InternalCallMapHandlerTest.php @@ -313,7 +313,7 @@ class InternalCallMapHandlerTest extends TestCase } /** - * @return iterable}> + * @return iterable}> */ public function callMapEntryProvider(): iterable { @@ -404,7 +404,7 @@ class InternalCallMapHandlerTest extends TestCase * @depends testGetcallmapReturnsAValidCallmap * @dataProvider callMapEntryProvider * @coversNothing - * @psalm-param callable-string $functionName + * @psalm-param string $functionName * @param array $callMapEntry */ public function testIgnoredFunctionsStillFail(string $functionName, array $callMapEntry): void @@ -462,7 +462,7 @@ class InternalCallMapHandlerTest extends TestCase * @depends testGetcallmapReturnsAValidCallmap * @depends testIgnoresAreSortedAndUnique * @dataProvider callMapEntryProvider - * @psalm-param callable-string $functionName + * @psalm-param string $functionName * @param array $callMapEntry */ public function testCallMapCompliesWithReflection(string $functionName, array $callMapEntry): void