We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1d67ee commit 9b8e8b7Copy full SHA for 9b8e8b7
zephir_parser.c
@@ -102,7 +102,7 @@ PHP_MINFO_FUNCTION(zephir_parser)
102
/* }}} */
103
104
/* {{{ zephir_parser_functions[] */
105
-const zend_function_entry zephir_parser_functions[] = {
+static const zend_function_entry zephir_parser_functions[] = {
106
PHP_FE(zephir_parse_file, NULL)
107
PHP_FE_END
108
};
@@ -116,8 +116,8 @@ zend_module_entry zephir_parser_module_entry = {
116
zephir_parser_functions,
117
PHP_MINIT(zephir_parser),
118
PHP_MSHUTDOWN(zephir_parser),
119
- NULL,
120
+ NULL, /* RINIT */
+ NULL, /* RSHUTDOWN */
121
PHP_MINFO(zephir_parser),
122
PHP_ZEPHIR_PARSER_VERSION,
123
STANDARD_MODULE_PROPERTIES
0 commit comments