We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5cf1fa commit 7537ff8Copy full SHA for 7537ff8
src/Reflection/BetterReflection/Reflector/MemoizingReflector.php
@@ -19,13 +19,13 @@
19
final class MemoizingReflector implements Reflector
20
{
21
22
- /** @var array<string, ReflectionClass|null> */
+ /** @var array<lowercase-string, ReflectionClass|null> */
23
private array $classReflections = [];
24
25
/** @var array<string, ReflectionConstant|null> */
26
private array $constantReflections = [];
27
28
- /** @var array<string, ReflectionFunction|null> */
+ /** @var array<lowercase-string, ReflectionFunction|null> */
29
private array $functionReflections = [];
30
31
public function __construct(
0 commit comments