Skip to content

Commit 8dbd598

Browse files
committed
Fix indent
1 parent f1a322f commit 8dbd598

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
@@ -853,7 +853,7 @@ return_type:
853853
argument_list:
854854
'(' ')' { $$ = zend_ast_create_list(0, ZEND_AST_ARG_LIST); }
855855
| '(' non_empty_argument_list possible_comma ')' { $$ = $2; }
856-
| '(' T_ELLIPSIS ')' { $$ = zend_ast_create(ZEND_AST_CALLABLE_CONVERT); }
856+
| '(' T_ELLIPSIS ')' { $$ = zend_ast_create(ZEND_AST_CALLABLE_CONVERT); }
857857
;
858858

859859
non_empty_argument_list:

0 commit comments

Comments
 (0)