Expand file tree Collapse file tree 11 files changed +4336
-4
lines changed Original file line number Diff line number Diff line change 638
638
<file src =" src/Contexts/ContextMariaDb110700.php" >
639
639
<PropertyTypeCoercion occurrences =" 1" />
640
640
</file >
641
+ <file src =" src/Contexts/ContextMariaDb110800.php" >
642
+ <PropertyTypeCoercion occurrences =" 1" />
643
+ </file >
644
+ <file src =" src/Contexts/ContextMariaDb120000.php" >
645
+ <PropertyTypeCoercion occurrences =" 1" />
646
+ </file >
641
647
<file src =" src/Contexts/ContextMySql50000.php" >
642
648
<PropertyTypeCoercion occurrences =" 1" />
643
649
</file >
Original file line number Diff line number Diff line change @@ -1038,9 +1038,9 @@ class ContextMariaDb110700 extends Context
1038
1038
'UPPER ' => Token::FLAG_KEYWORD | Token::FLAG_KEYWORD_FUNCTION ,
1039
1039
'USER ' => Token::FLAG_KEYWORD | Token::FLAG_KEYWORD_FUNCTION ,
1040
1040
'UUID ' => Token::FLAG_KEYWORD | Token::FLAG_KEYWORD_FUNCTION ,
1041
- 'UUIDV4 ' => Token::FLAG_KEYWORD | Token::FLAG_KEYWORD_FUNCTION ,
1042
- 'UUIDV7 ' => Token::FLAG_KEYWORD | Token::FLAG_KEYWORD_FUNCTION ,
1043
1041
'UUID_SHORT ' => Token::FLAG_KEYWORD | Token::FLAG_KEYWORD_FUNCTION ,
1042
+ 'UUID_V4 ' => Token::FLAG_KEYWORD | Token::FLAG_KEYWORD_FUNCTION ,
1043
+ 'UUID_V7 ' => Token::FLAG_KEYWORD | Token::FLAG_KEYWORD_FUNCTION ,
1044
1044
'VALIDATE_PASSWORD_STRENGTH ' => Token::FLAG_KEYWORD | Token::FLAG_KEYWORD_FUNCTION ,
1045
1045
'VARIANCE ' => Token::FLAG_KEYWORD | Token::FLAG_KEYWORD_FUNCTION ,
1046
1046
'VAR_POP ' => Token::FLAG_KEYWORD | Token::FLAG_KEYWORD_FUNCTION ,
Load Diff Large diffs are not rendered by default.
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -87,6 +87,8 @@ class ContextGenerator
87
87
'MariaDb110500 ' => 'https://mariadb.com/kb/en/reserved-words/ ' ,
88
88
'MariaDb110600 ' => 'https://mariadb.com/kb/en/reserved-words/ ' ,
89
89
'MariaDb110700 ' => 'https://mariadb.com/kb/en/reserved-words/ ' ,
90
+ 'MariaDb110800 ' => 'https://mariadb.com/kb/en/reserved-words/ ' ,
91
+ 'MariaDb120000 ' => 'https://mariadb.com/kb/en/reserved-words/ ' ,
90
92
];
91
93
92
94
/**
Original file line number Diff line number Diff line change @@ -137,6 +137,8 @@ public static function contextNamesProvider(): array
137
137
['MariaDb110500 ' ],
138
138
['MariaDb110600 ' ],
139
139
['MariaDb110700 ' ],
140
+ ['MariaDb110800 ' ],
141
+ ['MariaDb120000 ' ],
140
142
];
141
143
}
142
144
@@ -190,6 +192,8 @@ public static function contextClassesProvider(): array
190
192
[Contexts \ContextMariaDb110500::class],
191
193
[Contexts \ContextMariaDb110600::class],
192
194
[Contexts \ContextMariaDb110700::class],
195
+ [Contexts \ContextMariaDb110800::class],
196
+ [Contexts \ContextMariaDb120000::class],
193
197
];
194
198
}
195
199
0 commit comments