Test Failed
Push — master ( 9f944f...4f29f1 )
by Edward
05:59 queued 02:23
created
src/RegExp/FSM/LanguageBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
 
68 68
     private function splitSymbolInTransitions(int $symbolId, int $symbolToAdd): void
69 69
     {
70
-        $addSymbol = function (array $symbolList) use ($symbolId, $symbolToAdd) {
70
+        $addSymbol = function(array $symbolList) use ($symbolId, $symbolToAdd) {
71 71
             if (in_array($symbolId, $symbolList)) {
72 72
                 $symbolList[] = $symbolToAdd;
73 73
             }
Please login to merge, or discard this patch.
src/RegExp/FSM/TransitionMap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
101 101
 
102 102
     public function replaceEachTransition(callable $callback): void
103 103
     {
104
-        $replaceCallback = function ($data, int $stateIn, int $stateOut) use ($callback) {
104
+        $replaceCallback = function($data, int $stateIn, int $stateOut) use ($callback) {
105 105
             $newData = call_user_func($callback, $data, $stateIn, $stateOut);
106 106
             $this->replaceTransition($stateIn, $stateOut, $newData);
107 107
         };
Please login to merge, or discard this patch.
src/Parser/LL1/Lookup/TableConflictChecker.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
      */
69 69
     private function checkMultipleEpsilons(int $symbolId, Production ...$productionList): void
70 70
     {
71
-        $isEpsilonProduction = function (Production $production): bool {
71
+        $isEpsilonProduction = function(Production $production): bool {
72 72
             return $production->isEpsilon();
73 73
         };
74 74
         $epsilonProductionList = array_filter($productionList, $isEpsilonProduction);
Please login to merge, or discard this patch.
examples/Brainfuck/src/Grammar/SymbolType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 
19 19
     public const NT_EXPRESSION  = 0x09;
20 20
     public const NT_COMMAND     = 0x0A;
21
-    public const NT_LOOP       = 0x0B;
21
+    public const NT_LOOP = 0x0B;
22 22
 
23
-    public const T_EOI      = 0xFF;
23
+    public const T_EOI = 0xFF;
24 24
 }
Please login to merge, or discard this patch.
examples/SimpleExpr/src/Grammar/SymbolType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 
5 5
 abstract class SymbolType
6 6
 {
7
-    public const NT_ROOT          = 0x00; // Root symbol fot LL(1) parser
7
+    public const NT_ROOT = 0x00; // Root symbol fot LL(1) parser
8 8
 
9 9
     public const T_PLUS            = 0x01; // +
10 10
     public const T_STAR            = 0x02; // *
Please login to merge, or discard this patch.
src/Lexer/TokenMatcherTemplate.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -30,19 +30,19 @@
 block discarded – undo
30 30
         CharBufferInterface $buffer,
31 31
         TokenFactoryInterface $tokenFactory
32 32
     ): TokenMatcherContextInterface {
33
-        $onConstruct = function (): void {
33
+        $onConstruct = function(): void {
34 34
             unset($this->token);
35 35
         };
36
-        $onSetNewToken = function (int $tokenType) use ($tokenFactory): void {
36
+        $onSetNewToken = function(int $tokenType) use ($tokenFactory): void {
37 37
             $this->token = $tokenFactory->createToken($tokenType);
38 38
         };
39
-        $onGetToken = function (): Token {
39
+        $onGetToken = function(): Token {
40 40
             return $this->getToken();
41 41
         };
42
-        $onSetMode = function (string $mode): void {
42
+        $onSetMode = function(string $mode): void {
43 43
             $this->mode = $mode;
44 44
         };
45
-        $onGetMode = function (): string {
45
+        $onGetMode = function(): string {
46 46
             return $this->mode;
47 47
         };
48 48
 
Please login to merge, or discard this patch.
src/Console/BuildLookupTableCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
104 104
  */
105 105
 EOF;
106 106
 
107
-        $declare =  new Declare_([new DeclareDeclare('strict_types', $this->builder->val(1))]);
107
+        $declare = new Declare_([new DeclareDeclare('strict_types', $this->builder->val(1))]);
108 108
         $declare->setDocComment(new Doc($fileDocText));
109 109
         $nodes[] = $declare;
110 110
 
Please login to merge, or discard this patch.
src/RegExp/PropertyIndex.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-return array (
3
+return array(
4 4
   'Cc' => '/Properties/Cc.php',
5 5
   'Zs' => '/Properties/Zs.php',
6 6
   'Po' => '/Properties/Po.php',
Please login to merge, or discard this patch.
Indentation   +249 added lines, -249 removed lines patch added patch discarded remove patch
@@ -1,253 +1,253 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 return array (
4
-  'Cc' => '/Properties/Cc.php',
5
-  'Zs' => '/Properties/Zs.php',
6
-  'Po' => '/Properties/Po.php',
7
-  'Sc' => '/Properties/Sc.php',
8
-  'Ps' => '/Properties/Ps.php',
9
-  'Pe' => '/Properties/Pe.php',
10
-  'Sm' => '/Properties/Sm.php',
11
-  'Pd' => '/Properties/Pd.php',
12
-  'Nd' => '/Properties/Nd.php',
13
-  'Lu' => '/Properties/Lu.php',
14
-  'Sk' => '/Properties/Sk.php',
15
-  'Pc' => '/Properties/Pc.php',
16
-  'Ll' => '/Properties/Ll.php',
17
-  'So' => '/Properties/So.php',
18
-  'Lo' => '/Properties/Lo.php',
19
-  'Pi' => '/Properties/Pi.php',
20
-  'Cf' => '/Properties/Cf.php',
21
-  'No' => '/Properties/No.php',
22
-  'Pf' => '/Properties/Pf.php',
23
-  'Lt' => '/Properties/Lt.php',
24
-  'Lm' => '/Properties/Lm.php',
25
-  'Mn' => '/Properties/Mn.php',
26
-  'Me' => '/Properties/Me.php',
27
-  'Mc' => '/Properties/Mc.php',
28
-  'Nl' => '/Properties/Nl.php',
29
-  'Zl' => '/Properties/Zl.php',
30
-  'Zp' => '/Properties/Zp.php',
31
-  'Cs' => '/Properties/Cs.php',
32
-  'Co' => '/Properties/Co.php',
33
-  'C' => '/Properties/C.php',
34
-  'L' => '/Properties/L.php',
35
-  'L&' => '/Properties/L&.php',
36
-  'M' => '/Properties/M.php',
37
-  'N' => '/Properties/N.php',
38
-  'P' => '/Properties/P.php',
39
-  'S' => '/Properties/S.php',
40
-  'Z' => '/Properties/Z.php',
41
-  'Any' => '/Properties/Any.php',
42
-  'Cn' => '/Properties/Cn.php',
43
-  'Common' => '/Properties/Common.php',
44
-  'Latin' => '/Properties/Latin.php',
45
-  'Greek' => '/Properties/Greek.php',
46
-  'Cyrillic' => '/Properties/Cyrillic.php',
47
-  'Armenian' => '/Properties/Armenian.php',
48
-  'Hebrew' => '/Properties/Hebrew.php',
49
-  'Arabic' => '/Properties/Arabic.php',
50
-  'Syriac' => '/Properties/Syriac.php',
51
-  'Thaana' => '/Properties/Thaana.php',
52
-  'Devanagari' => '/Properties/Devanagari.php',
53
-  'Bengali' => '/Properties/Bengali.php',
54
-  'Gurmukhi' => '/Properties/Gurmukhi.php',
55
-  'Gujarati' => '/Properties/Gujarati.php',
56
-  'Oriya' => '/Properties/Oriya.php',
57
-  'Tamil' => '/Properties/Tamil.php',
58
-  'Telugu' => '/Properties/Telugu.php',
59
-  'Kannada' => '/Properties/Kannada.php',
60
-  'Malayalam' => '/Properties/Malayalam.php',
61
-  'Sinhala' => '/Properties/Sinhala.php',
62
-  'Thai' => '/Properties/Thai.php',
63
-  'Lao' => '/Properties/Lao.php',
64
-  'Tibetan' => '/Properties/Tibetan.php',
65
-  'Myanmar' => '/Properties/Myanmar.php',
66
-  'Georgian' => '/Properties/Georgian.php',
67
-  'Hangul' => '/Properties/Hangul.php',
68
-  'Ethiopic' => '/Properties/Ethiopic.php',
69
-  'Cherokee' => '/Properties/Cherokee.php',
70
-  'Canadian_Aboriginal' => '/Properties/Canadian_Aboriginal.php',
71
-  'Ogham' => '/Properties/Ogham.php',
72
-  'Runic' => '/Properties/Runic.php',
73
-  'Khmer' => '/Properties/Khmer.php',
74
-  'Mongolian' => '/Properties/Mongolian.php',
75
-  'Hiragana' => '/Properties/Hiragana.php',
76
-  'Katakana' => '/Properties/Katakana.php',
77
-  'Bopomofo' => '/Properties/Bopomofo.php',
78
-  'Han' => '/Properties/Han.php',
79
-  'Yi' => '/Properties/Yi.php',
80
-  'Old_Italic' => '/Properties/Old_Italic.php',
81
-  'Gothic' => '/Properties/Gothic.php',
82
-  'Deseret' => '/Properties/Deseret.php',
83
-  'Inherited' => '/Properties/Inherited.php',
84
-  'Tagalog' => '/Properties/Tagalog.php',
85
-  'Hanunoo' => '/Properties/Hanunoo.php',
86
-  'Buhid' => '/Properties/Buhid.php',
87
-  'Tagbanwa' => '/Properties/Tagbanwa.php',
88
-  'Limbu' => '/Properties/Limbu.php',
89
-  'Tai_Le' => '/Properties/Tai_Le.php',
90
-  'Linear_B' => '/Properties/Linear_B.php',
91
-  'Ugaritic' => '/Properties/Ugaritic.php',
92
-  'Shavian' => '/Properties/Shavian.php',
93
-  'Osmanya' => '/Properties/Osmanya.php',
94
-  'Cypriot' => '/Properties/Cypriot.php',
95
-  'Braille' => '/Properties/Braille.php',
96
-  'Buginese' => '/Properties/Buginese.php',
97
-  'Coptic' => '/Properties/Coptic.php',
98
-  'New_Tai_Lue' => '/Properties/New_Tai_Lue.php',
99
-  'Glagolitic' => '/Properties/Glagolitic.php',
100
-  'Tifinagh' => '/Properties/Tifinagh.php',
101
-  'Syloti_Nagri' => '/Properties/Syloti_Nagri.php',
102
-  'Old_Persian' => '/Properties/Old_Persian.php',
103
-  'Kharoshthi' => '/Properties/Kharoshthi.php',
104
-  'Balinese' => '/Properties/Balinese.php',
105
-  'Cuneiform' => '/Properties/Cuneiform.php',
106
-  'Phoenician' => '/Properties/Phoenician.php',
107
-  'Phags_Pa' => '/Properties/Phags_Pa.php',
108
-  'Nko' => '/Properties/Nko.php',
109
-  'Sundanese' => '/Properties/Sundanese.php',
110
-  'Lepcha' => '/Properties/Lepcha.php',
111
-  'Ol_Chiki' => '/Properties/Ol_Chiki.php',
112
-  'Vai' => '/Properties/Vai.php',
113
-  'Saurashtra' => '/Properties/Saurashtra.php',
114
-  'Kayah_Li' => '/Properties/Kayah_Li.php',
115
-  'Rejang' => '/Properties/Rejang.php',
116
-  'Lycian' => '/Properties/Lycian.php',
117
-  'Carian' => '/Properties/Carian.php',
118
-  'Lydian' => '/Properties/Lydian.php',
119
-  'Cham' => '/Properties/Cham.php',
120
-  'Tai_Tham' => '/Properties/Tai_Tham.php',
121
-  'Tai_Viet' => '/Properties/Tai_Viet.php',
122
-  'Avestan' => '/Properties/Avestan.php',
123
-  'Egyptian_Hieroglyphs' => '/Properties/Egyptian_Hieroglyphs.php',
124
-  'Samaritan' => '/Properties/Samaritan.php',
125
-  'Lisu' => '/Properties/Lisu.php',
126
-  'Bamum' => '/Properties/Bamum.php',
127
-  'Javanese' => '/Properties/Javanese.php',
128
-  'Meetei_Mayek' => '/Properties/Meetei_Mayek.php',
129
-  'Imperial_Aramaic' => '/Properties/Imperial_Aramaic.php',
130
-  'Old_South_Arabian' => '/Properties/Old_South_Arabian.php',
131
-  'Inscriptional_Parthian' => '/Properties/Inscriptional_Parthian.php',
132
-  'Inscriptional_Pahlavi' => '/Properties/Inscriptional_Pahlavi.php',
133
-  'Old_Turkic' => '/Properties/Old_Turkic.php',
134
-  'Kaithi' => '/Properties/Kaithi.php',
135
-  'Batak' => '/Properties/Batak.php',
136
-  'Brahmi' => '/Properties/Brahmi.php',
137
-  'Mandaic' => '/Properties/Mandaic.php',
138
-  'Chakma' => '/Properties/Chakma.php',
139
-  'Meroitic_Cursive' => '/Properties/Meroitic_Cursive.php',
140
-  'Meroitic_Hieroglyphs' => '/Properties/Meroitic_Hieroglyphs.php',
141
-  'Miao' => '/Properties/Miao.php',
142
-  'Sharada' => '/Properties/Sharada.php',
143
-  'Sora_Sompeng' => '/Properties/Sora_Sompeng.php',
144
-  'Takri' => '/Properties/Takri.php',
145
-  'Caucasian_Albanian' => '/Properties/Caucasian_Albanian.php',
146
-  'Bassa_Vah' => '/Properties/Bassa_Vah.php',
147
-  'Duployan' => '/Properties/Duployan.php',
148
-  'Elbasan' => '/Properties/Elbasan.php',
149
-  'Grantha' => '/Properties/Grantha.php',
150
-  'Pahawh_Hmong' => '/Properties/Pahawh_Hmong.php',
151
-  'Khojki' => '/Properties/Khojki.php',
152
-  'Linear_A' => '/Properties/Linear_A.php',
153
-  'Mahajani' => '/Properties/Mahajani.php',
154
-  'Manichaean' => '/Properties/Manichaean.php',
155
-  'Mende_Kikakui' => '/Properties/Mende_Kikakui.php',
156
-  'Modi' => '/Properties/Modi.php',
157
-  'Mro' => '/Properties/Mro.php',
158
-  'Old_North_Arabian' => '/Properties/Old_North_Arabian.php',
159
-  'Nabataean' => '/Properties/Nabataean.php',
160
-  'Palmyrene' => '/Properties/Palmyrene.php',
161
-  'Pau_Cin_Hau' => '/Properties/Pau_Cin_Hau.php',
162
-  'Old_Permic' => '/Properties/Old_Permic.php',
163
-  'Psalter_Pahlavi' => '/Properties/Psalter_Pahlavi.php',
164
-  'Siddham' => '/Properties/Siddham.php',
165
-  'Khudawadi' => '/Properties/Khudawadi.php',
166
-  'Tirhuta' => '/Properties/Tirhuta.php',
167
-  'Warang_Citi' => '/Properties/Warang_Citi.php',
168
-  'Ahom' => '/Properties/Ahom.php',
169
-  'Anatolian_Hieroglyphs' => '/Properties/Anatolian_Hieroglyphs.php',
170
-  'Hatran' => '/Properties/Hatran.php',
171
-  'Multani' => '/Properties/Multani.php',
172
-  'Old_Hungarian' => '/Properties/Old_Hungarian.php',
173
-  'SignWriting' => '/Properties/SignWriting.php',
174
-  'Adlam' => '/Properties/Adlam.php',
175
-  'Bhaiksuki' => '/Properties/Bhaiksuki.php',
176
-  'Marchen' => '/Properties/Marchen.php',
177
-  'Newa' => '/Properties/Newa.php',
178
-  'Osage' => '/Properties/Osage.php',
179
-  'Tangut' => '/Properties/Tangut.php',
180
-  'Masaram_Gondi' => '/Properties/Masaram_Gondi.php',
181
-  'Nushu' => '/Properties/Nushu.php',
182
-  'Soyombo' => '/Properties/Soyombo.php',
183
-  'Zanabazar_Square' => '/Properties/Zanabazar_Square.php',
184
-  'Dogra' => '/Properties/Dogra.php',
185
-  'Gunjala_Gondi' => '/Properties/Gunjala_Gondi.php',
186
-  'Makasar' => '/Properties/Makasar.php',
187
-  'Medefaidrin' => '/Properties/Medefaidrin.php',
188
-  'Hanifi_Rohingya' => '/Properties/Hanifi_Rohingya.php',
189
-  'Sogdian' => '/Properties/Sogdian.php',
190
-  'Old_Sogdian' => '/Properties/Old_Sogdian.php',
191
-  'Elymaic' => '/Properties/Elymaic.php',
192
-  'Nandinagari' => '/Properties/Nandinagari.php',
193
-  'Nyiakeng_Puachue_Hmong' => '/Properties/Nyiakeng_Puachue_Hmong.php',
194
-  'Wancho' => '/Properties/Wancho.php',
195
-  'Chorasmian' => '/Properties/Chorasmian.php',
196
-  'Dives_Akuru' => '/Properties/Dives_Akuru.php',
197
-  'Khitan_Small_Script' => '/Properties/Khitan_Small_Script.php',
198
-  'Yezidi' => '/Properties/Yezidi.php',
199
-  'Unknown' => '/Properties/Unknown.php',
200
-  'White_Space' => '/Properties/White_Space.php',
201
-  'Bidi_Control' => '/Properties/Bidi_Control.php',
202
-  'Join_Control' => '/Properties/Join_Control.php',
203
-  'Dash' => '/Properties/Dash.php',
204
-  'Hyphen' => '/Properties/Hyphen.php',
205
-  'Quotation_Mark' => '/Properties/Quotation_Mark.php',
206
-  'Terminal_Punctuation' => '/Properties/Terminal_Punctuation.php',
207
-  'Other_Math' => '/Properties/Other_Math.php',
208
-  'Hex_Digit' => '/Properties/Hex_Digit.php',
209
-  'ASCII_Hex_Digit' => '/Properties/ASCII_Hex_Digit.php',
210
-  'Other_Alphabetic' => '/Properties/Other_Alphabetic.php',
211
-  'Ideographic' => '/Properties/Ideographic.php',
212
-  'Diacritic' => '/Properties/Diacritic.php',
213
-  'Extender' => '/Properties/Extender.php',
214
-  'Other_Lowercase' => '/Properties/Other_Lowercase.php',
215
-  'Other_Uppercase' => '/Properties/Other_Uppercase.php',
216
-  'Noncharacter_Code_Point' => '/Properties/Noncharacter_Code_Point.php',
217
-  'Other_Grapheme_Extend' => '/Properties/Other_Grapheme_Extend.php',
218
-  'IDS_Binary_Operator' => '/Properties/IDS_Binary_Operator.php',
219
-  'IDS_Trinary_Operator' => '/Properties/IDS_Trinary_Operator.php',
220
-  'Radical' => '/Properties/Radical.php',
221
-  'Unified_Ideograph' => '/Properties/Unified_Ideograph.php',
222
-  'Other_Default_Ignorable_Code_Point' => '/Properties/Other_Default_Ignorable_Code_Point.php',
223
-  'Deprecated' => '/Properties/Deprecated.php',
224
-  'Soft_Dotted' => '/Properties/Soft_Dotted.php',
225
-  'Logical_Order_Exception' => '/Properties/Logical_Order_Exception.php',
226
-  'Other_ID_Start' => '/Properties/Other_ID_Start.php',
227
-  'Other_ID_Continue' => '/Properties/Other_ID_Continue.php',
228
-  'Sentence_Terminal' => '/Properties/Sentence_Terminal.php',
229
-  'Variation_Selector' => '/Properties/Variation_Selector.php',
230
-  'Pattern_White_Space' => '/Properties/Pattern_White_Space.php',
231
-  'Pattern_Syntax' => '/Properties/Pattern_Syntax.php',
232
-  'Prepended_Concatenation_Mark' => '/Properties/Prepended_Concatenation_Mark.php',
233
-  'Regional_Indicator' => '/Properties/Regional_Indicator.php',
234
-  'Math' => '/Properties/Math.php',
235
-  'Alphabetic' => '/Properties/Alphabetic.php',
236
-  'Lowercase' => '/Properties/Lowercase.php',
237
-  'Uppercase' => '/Properties/Uppercase.php',
238
-  'Cased' => '/Properties/Cased.php',
239
-  'Case_Ignorable' => '/Properties/Case_Ignorable.php',
240
-  'Changes_When_Lowercased' => '/Properties/Changes_When_Lowercased.php',
241
-  'Changes_When_Uppercased' => '/Properties/Changes_When_Uppercased.php',
242
-  'Changes_When_Titlecased' => '/Properties/Changes_When_Titlecased.php',
243
-  'Changes_When_Casefolded' => '/Properties/Changes_When_Casefolded.php',
244
-  'Changes_When_Casemapped' => '/Properties/Changes_When_Casemapped.php',
245
-  'ID_Start' => '/Properties/ID_Start.php',
246
-  'ID_Continue' => '/Properties/ID_Continue.php',
247
-  'XID_Start' => '/Properties/XID_Start.php',
248
-  'XID_Continue' => '/Properties/XID_Continue.php',
249
-  'Default_Ignorable_Code_Point' => '/Properties/Default_Ignorable_Code_Point.php',
250
-  'Grapheme_Extend' => '/Properties/Grapheme_Extend.php',
251
-  'Grapheme_Base' => '/Properties/Grapheme_Base.php',
252
-  'Grapheme_Link' => '/Properties/Grapheme_Link.php',
4
+    'Cc' => '/Properties/Cc.php',
5
+    'Zs' => '/Properties/Zs.php',
6
+    'Po' => '/Properties/Po.php',
7
+    'Sc' => '/Properties/Sc.php',
8
+    'Ps' => '/Properties/Ps.php',
9
+    'Pe' => '/Properties/Pe.php',
10
+    'Sm' => '/Properties/Sm.php',
11
+    'Pd' => '/Properties/Pd.php',
12
+    'Nd' => '/Properties/Nd.php',
13
+    'Lu' => '/Properties/Lu.php',
14
+    'Sk' => '/Properties/Sk.php',
15
+    'Pc' => '/Properties/Pc.php',
16
+    'Ll' => '/Properties/Ll.php',
17
+    'So' => '/Properties/So.php',
18
+    'Lo' => '/Properties/Lo.php',
19
+    'Pi' => '/Properties/Pi.php',
20
+    'Cf' => '/Properties/Cf.php',
21
+    'No' => '/Properties/No.php',
22
+    'Pf' => '/Properties/Pf.php',
23
+    'Lt' => '/Properties/Lt.php',
24
+    'Lm' => '/Properties/Lm.php',
25
+    'Mn' => '/Properties/Mn.php',
26
+    'Me' => '/Properties/Me.php',
27
+    'Mc' => '/Properties/Mc.php',
28
+    'Nl' => '/Properties/Nl.php',
29
+    'Zl' => '/Properties/Zl.php',
30
+    'Zp' => '/Properties/Zp.php',
31
+    'Cs' => '/Properties/Cs.php',
32
+    'Co' => '/Properties/Co.php',
33
+    'C' => '/Properties/C.php',
34
+    'L' => '/Properties/L.php',
35
+    'L&' => '/Properties/L&.php',
36
+    'M' => '/Properties/M.php',
37
+    'N' => '/Properties/N.php',
38
+    'P' => '/Properties/P.php',
39
+    'S' => '/Properties/S.php',
40
+    'Z' => '/Properties/Z.php',
41
+    'Any' => '/Properties/Any.php',
42
+    'Cn' => '/Properties/Cn.php',
43
+    'Common' => '/Properties/Common.php',
44
+    'Latin' => '/Properties/Latin.php',
45
+    'Greek' => '/Properties/Greek.php',
46
+    'Cyrillic' => '/Properties/Cyrillic.php',
47
+    'Armenian' => '/Properties/Armenian.php',
48
+    'Hebrew' => '/Properties/Hebrew.php',
49
+    'Arabic' => '/Properties/Arabic.php',
50
+    'Syriac' => '/Properties/Syriac.php',
51
+    'Thaana' => '/Properties/Thaana.php',
52
+    'Devanagari' => '/Properties/Devanagari.php',
53
+    'Bengali' => '/Properties/Bengali.php',
54
+    'Gurmukhi' => '/Properties/Gurmukhi.php',
55
+    'Gujarati' => '/Properties/Gujarati.php',
56
+    'Oriya' => '/Properties/Oriya.php',
57
+    'Tamil' => '/Properties/Tamil.php',
58
+    'Telugu' => '/Properties/Telugu.php',
59
+    'Kannada' => '/Properties/Kannada.php',
60
+    'Malayalam' => '/Properties/Malayalam.php',
61
+    'Sinhala' => '/Properties/Sinhala.php',
62
+    'Thai' => '/Properties/Thai.php',
63
+    'Lao' => '/Properties/Lao.php',
64
+    'Tibetan' => '/Properties/Tibetan.php',
65
+    'Myanmar' => '/Properties/Myanmar.php',
66
+    'Georgian' => '/Properties/Georgian.php',
67
+    'Hangul' => '/Properties/Hangul.php',
68
+    'Ethiopic' => '/Properties/Ethiopic.php',
69
+    'Cherokee' => '/Properties/Cherokee.php',
70
+    'Canadian_Aboriginal' => '/Properties/Canadian_Aboriginal.php',
71
+    'Ogham' => '/Properties/Ogham.php',
72
+    'Runic' => '/Properties/Runic.php',
73
+    'Khmer' => '/Properties/Khmer.php',
74
+    'Mongolian' => '/Properties/Mongolian.php',
75
+    'Hiragana' => '/Properties/Hiragana.php',
76
+    'Katakana' => '/Properties/Katakana.php',
77
+    'Bopomofo' => '/Properties/Bopomofo.php',
78
+    'Han' => '/Properties/Han.php',
79
+    'Yi' => '/Properties/Yi.php',
80
+    'Old_Italic' => '/Properties/Old_Italic.php',
81
+    'Gothic' => '/Properties/Gothic.php',
82
+    'Deseret' => '/Properties/Deseret.php',
83
+    'Inherited' => '/Properties/Inherited.php',
84
+    'Tagalog' => '/Properties/Tagalog.php',
85
+    'Hanunoo' => '/Properties/Hanunoo.php',
86
+    'Buhid' => '/Properties/Buhid.php',
87
+    'Tagbanwa' => '/Properties/Tagbanwa.php',
88
+    'Limbu' => '/Properties/Limbu.php',
89
+    'Tai_Le' => '/Properties/Tai_Le.php',
90
+    'Linear_B' => '/Properties/Linear_B.php',
91
+    'Ugaritic' => '/Properties/Ugaritic.php',
92
+    'Shavian' => '/Properties/Shavian.php',
93
+    'Osmanya' => '/Properties/Osmanya.php',
94
+    'Cypriot' => '/Properties/Cypriot.php',
95
+    'Braille' => '/Properties/Braille.php',
96
+    'Buginese' => '/Properties/Buginese.php',
97
+    'Coptic' => '/Properties/Coptic.php',
98
+    'New_Tai_Lue' => '/Properties/New_Tai_Lue.php',
99
+    'Glagolitic' => '/Properties/Glagolitic.php',
100
+    'Tifinagh' => '/Properties/Tifinagh.php',
101
+    'Syloti_Nagri' => '/Properties/Syloti_Nagri.php',
102
+    'Old_Persian' => '/Properties/Old_Persian.php',
103
+    'Kharoshthi' => '/Properties/Kharoshthi.php',
104
+    'Balinese' => '/Properties/Balinese.php',
105
+    'Cuneiform' => '/Properties/Cuneiform.php',
106
+    'Phoenician' => '/Properties/Phoenician.php',
107
+    'Phags_Pa' => '/Properties/Phags_Pa.php',
108
+    'Nko' => '/Properties/Nko.php',
109
+    'Sundanese' => '/Properties/Sundanese.php',
110
+    'Lepcha' => '/Properties/Lepcha.php',
111
+    'Ol_Chiki' => '/Properties/Ol_Chiki.php',
112
+    'Vai' => '/Properties/Vai.php',
113
+    'Saurashtra' => '/Properties/Saurashtra.php',
114
+    'Kayah_Li' => '/Properties/Kayah_Li.php',
115
+    'Rejang' => '/Properties/Rejang.php',
116
+    'Lycian' => '/Properties/Lycian.php',
117
+    'Carian' => '/Properties/Carian.php',
118
+    'Lydian' => '/Properties/Lydian.php',
119
+    'Cham' => '/Properties/Cham.php',
120
+    'Tai_Tham' => '/Properties/Tai_Tham.php',
121
+    'Tai_Viet' => '/Properties/Tai_Viet.php',
122
+    'Avestan' => '/Properties/Avestan.php',
123
+    'Egyptian_Hieroglyphs' => '/Properties/Egyptian_Hieroglyphs.php',
124
+    'Samaritan' => '/Properties/Samaritan.php',
125
+    'Lisu' => '/Properties/Lisu.php',
126
+    'Bamum' => '/Properties/Bamum.php',
127
+    'Javanese' => '/Properties/Javanese.php',
128
+    'Meetei_Mayek' => '/Properties/Meetei_Mayek.php',
129
+    'Imperial_Aramaic' => '/Properties/Imperial_Aramaic.php',
130
+    'Old_South_Arabian' => '/Properties/Old_South_Arabian.php',
131
+    'Inscriptional_Parthian' => '/Properties/Inscriptional_Parthian.php',
132
+    'Inscriptional_Pahlavi' => '/Properties/Inscriptional_Pahlavi.php',
133
+    'Old_Turkic' => '/Properties/Old_Turkic.php',
134
+    'Kaithi' => '/Properties/Kaithi.php',
135
+    'Batak' => '/Properties/Batak.php',
136
+    'Brahmi' => '/Properties/Brahmi.php',
137
+    'Mandaic' => '/Properties/Mandaic.php',
138
+    'Chakma' => '/Properties/Chakma.php',
139
+    'Meroitic_Cursive' => '/Properties/Meroitic_Cursive.php',
140
+    'Meroitic_Hieroglyphs' => '/Properties/Meroitic_Hieroglyphs.php',
141
+    'Miao' => '/Properties/Miao.php',
142
+    'Sharada' => '/Properties/Sharada.php',
143
+    'Sora_Sompeng' => '/Properties/Sora_Sompeng.php',
144
+    'Takri' => '/Properties/Takri.php',
145
+    'Caucasian_Albanian' => '/Properties/Caucasian_Albanian.php',
146
+    'Bassa_Vah' => '/Properties/Bassa_Vah.php',
147
+    'Duployan' => '/Properties/Duployan.php',
148
+    'Elbasan' => '/Properties/Elbasan.php',
149
+    'Grantha' => '/Properties/Grantha.php',
150
+    'Pahawh_Hmong' => '/Properties/Pahawh_Hmong.php',
151
+    'Khojki' => '/Properties/Khojki.php',
152
+    'Linear_A' => '/Properties/Linear_A.php',
153
+    'Mahajani' => '/Properties/Mahajani.php',
154
+    'Manichaean' => '/Properties/Manichaean.php',
155
+    'Mende_Kikakui' => '/Properties/Mende_Kikakui.php',
156
+    'Modi' => '/Properties/Modi.php',
157
+    'Mro' => '/Properties/Mro.php',
158
+    'Old_North_Arabian' => '/Properties/Old_North_Arabian.php',
159
+    'Nabataean' => '/Properties/Nabataean.php',
160
+    'Palmyrene' => '/Properties/Palmyrene.php',
161
+    'Pau_Cin_Hau' => '/Properties/Pau_Cin_Hau.php',
162
+    'Old_Permic' => '/Properties/Old_Permic.php',
163
+    'Psalter_Pahlavi' => '/Properties/Psalter_Pahlavi.php',
164
+    'Siddham' => '/Properties/Siddham.php',
165
+    'Khudawadi' => '/Properties/Khudawadi.php',
166
+    'Tirhuta' => '/Properties/Tirhuta.php',
167
+    'Warang_Citi' => '/Properties/Warang_Citi.php',
168
+    'Ahom' => '/Properties/Ahom.php',
169
+    'Anatolian_Hieroglyphs' => '/Properties/Anatolian_Hieroglyphs.php',
170
+    'Hatran' => '/Properties/Hatran.php',
171
+    'Multani' => '/Properties/Multani.php',
172
+    'Old_Hungarian' => '/Properties/Old_Hungarian.php',
173
+    'SignWriting' => '/Properties/SignWriting.php',
174
+    'Adlam' => '/Properties/Adlam.php',
175
+    'Bhaiksuki' => '/Properties/Bhaiksuki.php',
176
+    'Marchen' => '/Properties/Marchen.php',
177
+    'Newa' => '/Properties/Newa.php',
178
+    'Osage' => '/Properties/Osage.php',
179
+    'Tangut' => '/Properties/Tangut.php',
180
+    'Masaram_Gondi' => '/Properties/Masaram_Gondi.php',
181
+    'Nushu' => '/Properties/Nushu.php',
182
+    'Soyombo' => '/Properties/Soyombo.php',
183
+    'Zanabazar_Square' => '/Properties/Zanabazar_Square.php',
184
+    'Dogra' => '/Properties/Dogra.php',
185
+    'Gunjala_Gondi' => '/Properties/Gunjala_Gondi.php',
186
+    'Makasar' => '/Properties/Makasar.php',
187
+    'Medefaidrin' => '/Properties/Medefaidrin.php',
188
+    'Hanifi_Rohingya' => '/Properties/Hanifi_Rohingya.php',
189
+    'Sogdian' => '/Properties/Sogdian.php',
190
+    'Old_Sogdian' => '/Properties/Old_Sogdian.php',
191
+    'Elymaic' => '/Properties/Elymaic.php',
192
+    'Nandinagari' => '/Properties/Nandinagari.php',
193
+    'Nyiakeng_Puachue_Hmong' => '/Properties/Nyiakeng_Puachue_Hmong.php',
194
+    'Wancho' => '/Properties/Wancho.php',
195
+    'Chorasmian' => '/Properties/Chorasmian.php',
196
+    'Dives_Akuru' => '/Properties/Dives_Akuru.php',
197
+    'Khitan_Small_Script' => '/Properties/Khitan_Small_Script.php',
198
+    'Yezidi' => '/Properties/Yezidi.php',
199
+    'Unknown' => '/Properties/Unknown.php',
200
+    'White_Space' => '/Properties/White_Space.php',
201
+    'Bidi_Control' => '/Properties/Bidi_Control.php',
202
+    'Join_Control' => '/Properties/Join_Control.php',
203
+    'Dash' => '/Properties/Dash.php',
204
+    'Hyphen' => '/Properties/Hyphen.php',
205
+    'Quotation_Mark' => '/Properties/Quotation_Mark.php',
206
+    'Terminal_Punctuation' => '/Properties/Terminal_Punctuation.php',
207
+    'Other_Math' => '/Properties/Other_Math.php',
208
+    'Hex_Digit' => '/Properties/Hex_Digit.php',
209
+    'ASCII_Hex_Digit' => '/Properties/ASCII_Hex_Digit.php',
210
+    'Other_Alphabetic' => '/Properties/Other_Alphabetic.php',
211
+    'Ideographic' => '/Properties/Ideographic.php',
212
+    'Diacritic' => '/Properties/Diacritic.php',
213
+    'Extender' => '/Properties/Extender.php',
214
+    'Other_Lowercase' => '/Properties/Other_Lowercase.php',
215
+    'Other_Uppercase' => '/Properties/Other_Uppercase.php',
216
+    'Noncharacter_Code_Point' => '/Properties/Noncharacter_Code_Point.php',
217
+    'Other_Grapheme_Extend' => '/Properties/Other_Grapheme_Extend.php',
218
+    'IDS_Binary_Operator' => '/Properties/IDS_Binary_Operator.php',
219
+    'IDS_Trinary_Operator' => '/Properties/IDS_Trinary_Operator.php',
220
+    'Radical' => '/Properties/Radical.php',
221
+    'Unified_Ideograph' => '/Properties/Unified_Ideograph.php',
222
+    'Other_Default_Ignorable_Code_Point' => '/Properties/Other_Default_Ignorable_Code_Point.php',
223
+    'Deprecated' => '/Properties/Deprecated.php',
224
+    'Soft_Dotted' => '/Properties/Soft_Dotted.php',
225
+    'Logical_Order_Exception' => '/Properties/Logical_Order_Exception.php',
226
+    'Other_ID_Start' => '/Properties/Other_ID_Start.php',
227
+    'Other_ID_Continue' => '/Properties/Other_ID_Continue.php',
228
+    'Sentence_Terminal' => '/Properties/Sentence_Terminal.php',
229
+    'Variation_Selector' => '/Properties/Variation_Selector.php',
230
+    'Pattern_White_Space' => '/Properties/Pattern_White_Space.php',
231
+    'Pattern_Syntax' => '/Properties/Pattern_Syntax.php',
232
+    'Prepended_Concatenation_Mark' => '/Properties/Prepended_Concatenation_Mark.php',
233
+    'Regional_Indicator' => '/Properties/Regional_Indicator.php',
234
+    'Math' => '/Properties/Math.php',
235
+    'Alphabetic' => '/Properties/Alphabetic.php',
236
+    'Lowercase' => '/Properties/Lowercase.php',
237
+    'Uppercase' => '/Properties/Uppercase.php',
238
+    'Cased' => '/Properties/Cased.php',
239
+    'Case_Ignorable' => '/Properties/Case_Ignorable.php',
240
+    'Changes_When_Lowercased' => '/Properties/Changes_When_Lowercased.php',
241
+    'Changes_When_Uppercased' => '/Properties/Changes_When_Uppercased.php',
242
+    'Changes_When_Titlecased' => '/Properties/Changes_When_Titlecased.php',
243
+    'Changes_When_Casefolded' => '/Properties/Changes_When_Casefolded.php',
244
+    'Changes_When_Casemapped' => '/Properties/Changes_When_Casemapped.php',
245
+    'ID_Start' => '/Properties/ID_Start.php',
246
+    'ID_Continue' => '/Properties/ID_Continue.php',
247
+    'XID_Start' => '/Properties/XID_Start.php',
248
+    'XID_Continue' => '/Properties/XID_Continue.php',
249
+    'Default_Ignorable_Code_Point' => '/Properties/Default_Ignorable_Code_Point.php',
250
+    'Grapheme_Extend' => '/Properties/Grapheme_Extend.php',
251
+    'Grapheme_Base' => '/Properties/Grapheme_Base.php',
252
+    'Grapheme_Link' => '/Properties/Grapheme_Link.php',
253 253
 );
Please login to merge, or discard this patch.
src/RegExp/FSM/NfaBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -387,7 +387,7 @@
 block discarded – undo
387 387
 
388 388
     public function onFinish(): void
389 389
     {
390
-        $addTransitionToLanguage = function (RangeSetInterface $rangeSet, int $stateIn, int $stateOut) {
390
+        $addTransitionToLanguage = function(RangeSetInterface $rangeSet, int $stateIn, int $stateOut) {
391 391
             $this
392 392
                 ->getLanguageBuilder()
393 393
                 ->addTransition($stateIn, $stateOut, ...$rangeSet->getRanges());
Please login to merge, or discard this patch.