27
27
use function Safe \preg_match ;
28
28
use function strtolower ;
29
29
use function trim ;
30
- use const SORT_STRING ;
31
30
32
31
final class SymbolRegistry
33
32
{
@@ -45,11 +44,8 @@ public static function create(
45
44
array $ regexes = []
46
45
): self {
47
46
return new self (
48
- array_map (
49
- static fn (string $ name ) => strtolower (trim ($ name , '\\' )),
50
- $ names ,
51
- ),
52
- array_unique ($ regexes , SORT_STRING ),
47
+ self ::normalizeNames ($ names ),
48
+ array_unique ($ regexes ),
53
49
false ,
54
50
);
55
51
}
@@ -66,13 +62,8 @@ public static function createForConstants(
66
62
array $ regexes = []
67
63
): self {
68
64
return new self (
69
- array_map (
70
- static fn (string $ name ) => self ::lowerCaseConstantName (
71
- trim ($ name , '\\' ),
72
- ),
73
- $ names ,
74
- ),
75
- array_unique ($ regexes , SORT_STRING ),
65
+ self ::normalizeConstantNames ($ names ),
66
+ array_unique ($ regexes ),
76
67
true ,
77
68
);
78
69
}
@@ -151,6 +142,31 @@ public function getRegexes(): array
151
142
return $ this ->regexes ;
152
143
}
153
144
145
+ private static function normalizeNames (array $ names ): array
146
+ {
147
+ return array_map (
148
+ static fn (string $ name ) => strtolower (
149
+ self ::normalizeName ($ name ),
150
+ ),
151
+ $ names ,
152
+ );
153
+ }
154
+
155
+ private static function normalizeConstantNames (array $ names ): array
156
+ {
157
+ return array_map (
158
+ static fn (string $ name ) => self ::lowerCaseConstantName (
159
+ self ::normalizeName ($ name ),
160
+ ),
161
+ $ names ,
162
+ );
163
+ }
164
+
165
+ private static function normalizeName (string $ name ): string
166
+ {
167
+ return trim ($ name , '\\ ' );
168
+ }
169
+
154
170
/**
155
171
* Transforms the constant FQ name "Acme\Foo\X" to "acme\foo\X" since the
156
172
* namespace remains case-insensitive for constants regardless of whether
0 commit comments