Skip to content

Commit 74b524f

Browse files
committed
[skip ci] Fix spacing
1 parent de36608 commit 74b524f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Zend/zend_ast.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1394,11 +1394,11 @@ static ZEND_COLD void zend_ast_export_ns_name(smart_str *str, zend_ast *ast, int
13941394
zval *zv = zend_ast_get_zval(ast);
13951395

13961396
if (Z_TYPE_P(zv) == IS_STRING) {
1397-
if (NAME_QUAL(ast->attr) == ZEND_NAME_FQ) {
1397+
if (NAME_QUAL(ast->attr) == ZEND_NAME_FQ) {
13981398
smart_str_appendc(str, '\\');
1399-
} else if (NAME_QUAL(ast->attr) == ZEND_NAME_RELATIVE) {
1399+
} else if (NAME_QUAL(ast->attr) == ZEND_NAME_RELATIVE) {
14001400
smart_str_appends(str, "namespace\\");
1401-
}
1401+
}
14021402
smart_str_append(str, Z_STR_P(zv));
14031403
return;
14041404
}

0 commit comments

Comments
 (0)