Skip to content

Commit 24fb844

Browse files
matsuonikic
authored andcommitted
Stop using a semicolon (;) at the end of case statements for PHP 8.5
1 parent d82749c commit 24fb844

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bin/php-parse

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,11 +169,11 @@ function parseArgs($args) {
169169
$operations[] = 'var-dump';
170170
break;
171171
case '--resolve-names':
172-
case '-N';
172+
case '-N':
173173
$operations[] = 'resolve-names';
174174
break;
175175
case '--with-column-info':
176-
case '-c';
176+
case '-c':
177177
$attributes['with-column-info'] = true;
178178
break;
179179
case '--with-positions':
@@ -185,7 +185,7 @@ function parseArgs($args) {
185185
$attributes['with-recovery'] = true;
186186
break;
187187
case '--help':
188-
case '-h';
188+
case '-h':
189189
showHelp();
190190
break;
191191
case '--':

0 commit comments

Comments
 (0)