Skip to content

Commit 28cd376

Browse files
authored
Remove unnecessary semicolon in match rule (#19096)
1 parent 0dc83c2 commit 28cd376

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_language_parser.y

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -727,7 +727,7 @@ case_separator:
727727

728728
match:
729729
T_MATCH '(' expr ')' '{' match_arm_list '}'
730-
{ $$ = zend_ast_create(ZEND_AST_MATCH, $3, $6); };
730+
{ $$ = zend_ast_create(ZEND_AST_MATCH, $3, $6); }
731731
;
732732

733733
match_arm_list:

0 commit comments

Comments
 (0)