Skip to content

Commit

Permalink
Fix bug surfaced from removal of elseif scope modification
Browse files Browse the repository at this point in the history
  • Loading branch information
robchett committed Jun 17, 2023
1 parent 7792b6c commit 4c467aa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/Internal/Codebase/InternalCallMapHandlerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ public function testGetcallmapReturnsAValidCallmap(): void
}

/**
* @return iterable<string, array{0: callable-string, 1: array<int|string, string>}>
* @return iterable<string, array{string, array<int|string, string>}>
*/
public function callMapEntryProvider(): iterable
{
Expand Down Expand Up @@ -404,7 +404,7 @@ private function isUnreflectableIgnored(string $functionName): bool
* @depends testGetcallmapReturnsAValidCallmap
* @dataProvider callMapEntryProvider
* @coversNothing
* @psalm-param callable-string $functionName
* @psalm-param non-empty-string $functionName
* @param array<int|string, string> $callMapEntry
*/
public function testIgnoredFunctionsStillFail(string $functionName, array $callMapEntry): void
Expand Down Expand Up @@ -462,7 +462,7 @@ public function testIgnoredFunctionsStillFail(string $functionName, array $callM
* @depends testGetcallmapReturnsAValidCallmap
* @depends testIgnoresAreSortedAndUnique
* @dataProvider callMapEntryProvider
* @psalm-param callable-string $functionName
* @psalm-param non-empty-string $functionName
* @param array<int|string, string> $callMapEntry
*/
public function testCallMapCompliesWithReflection(string $functionName, array $callMapEntry): void
Expand Down

0 comments on commit 4c467aa

Please sign in to comment.