We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93e2261 commit 87603dcCopy full SHA for 87603dc
src/Analyser/TypeSpecifierContext.php
@@ -19,9 +19,6 @@ final class TypeSpecifierContext
19
public const CONTEXT_FALSEY = self::CONTEXT_FALSE | self::CONTEXT_FALSEY_BUT_NOT_FALSE;
20
public const CONTEXT_BITMASK = 0b1111;
21
22
- /** @var self[] */
23
- private static array $registry;
24
-
25
private ?Type $returnType = null;
26
27
private function __construct(private ?int $value)
@@ -30,8 +27,7 @@ private function __construct(private ?int $value)
30
31
28
private static function create(?int $value): self
32
29
{
33
- self::$registry[$value] ??= new self($value);
34
- return self::$registry[$value];
+ return new self($value);
35
}
36
37
public static function createTrue(): self
0 commit comments