Skip to content

Commit 9b8e8b7

Browse files
committed
💄
1 parent a1d67ee commit 9b8e8b7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

zephir_parser.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ PHP_MINFO_FUNCTION(zephir_parser)
102102
/* }}} */
103103

104104
/* {{{ zephir_parser_functions[] */
105-
const zend_function_entry zephir_parser_functions[] = {
105+
static const zend_function_entry zephir_parser_functions[] = {
106106
PHP_FE(zephir_parse_file, NULL)
107107
PHP_FE_END
108108
};
@@ -116,8 +116,8 @@ zend_module_entry zephir_parser_module_entry = {
116116
zephir_parser_functions,
117117
PHP_MINIT(zephir_parser),
118118
PHP_MSHUTDOWN(zephir_parser),
119-
NULL,
120-
NULL,
119+
NULL, /* RINIT */
120+
NULL, /* RSHUTDOWN */
121121
PHP_MINFO(zephir_parser),
122122
PHP_ZEPHIR_PARSER_VERSION,
123123
STANDARD_MODULE_PROPERTIES

0 commit comments

Comments
 (0)