Skip to content

Commit

Permalink
[src] fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rryqszq4 committed Jan 12, 2025
1 parent 24b0b9e commit d802ce2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/php/impl/php_ngx_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ static const zend_function_entry php_ngx_class_functions[] = {
PHP_ME(ngx, query_args, ngx_query_args_arginfo, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
PHP_ME(ngx, post_args, ngx_post_args_arginfo, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
PHP_ME(ngx, sleep, ngx_sleep_arginfo, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
{NULL, NULL, NULL, 0, 0}
PHP_FE_END
};

void php_impl_ngx_core_init(int module_number )
Expand Down
2 changes: 1 addition & 1 deletion src/php/impl/php_ngx_log.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ PHP_METHOD(ngx_log, error)

static const zend_function_entry php_ngx_log_class_functions[] = {
PHP_ME(ngx_log, error, ngx_log_error_arginfo, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
{NULL, NULL, NULL, 0, 0}
PHP_FE_END
};

void
Expand Down
2 changes: 1 addition & 1 deletion src/php/impl/php_ngx_request.c
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ static const zend_function_entry php_ngx_request_class_functions[] = {
PHP_ME(ngx_request, server_port, ngx_request_server_port_arginfo, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
PHP_ME(ngx_request, server_name, ngx_request_server_name_arginfo, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
PHP_ME(ngx_request, headers, ngx_request_headers_arginfo, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
{NULL, NULL, NULL, 0, 0}
PHP_FE_END
};

void
Expand Down
2 changes: 1 addition & 1 deletion src/php/impl/php_ngx_socket.c
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ static const zend_function_entry php_ngx_socket_class_functions[] = {
PHP_ME(ngx_socket, send, ngx_socket_send_arginfo, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
PHP_ME(ngx_socket, recv, ngx_socket_recv_arginfo, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
PHP_ME(ngx_socket, close, ngx_socket_close_arginfo, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
{NULL, NULL, NULL, 0, 0}
PHP_FE_END
};

void
Expand Down
2 changes: 1 addition & 1 deletion src/php/impl/php_ngx_var.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ PHP_METHOD(ngx_var, set)
static const zend_function_entry php_ngx_var_class_functions[] = {
PHP_ME(ngx_var, get, ngx_var_get_arginfo, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
PHP_ME(ngx_var, set, ngx_var_set_arginfo, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
{NULL, NULL, NULL, 0, 0}
PHP_FE_END
};

void
Expand Down

0 comments on commit d802ce2

Please sign in to comment.