Skip to content

Commit 7537ff8

Browse files
staabmondrejmirtes
authored andcommitted
MemoizingReflector: more precise types
1 parent c5cf1fa commit 7537ff8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Reflection/BetterReflection/Reflector/MemoizingReflector.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919
final class MemoizingReflector implements Reflector
2020
{
2121

22-
/** @var array<string, ReflectionClass|null> */
22+
/** @var array<lowercase-string, ReflectionClass|null> */
2323
private array $classReflections = [];
2424

2525
/** @var array<string, ReflectionConstant|null> */
2626
private array $constantReflections = [];
2727

28-
/** @var array<string, ReflectionFunction|null> */
28+
/** @var array<lowercase-string, ReflectionFunction|null> */
2929
private array $functionReflections = [];
3030

3131
public function __construct(

0 commit comments

Comments
 (0)