diff options
author | Máté Kocsis <kocsismate@woohoolabs.com> | 2021-02-15 22:14:36 +0100 |
---|---|---|
committer | Máté Kocsis <kocsismate@woohoolabs.com> | 2021-02-16 13:09:56 +0100 |
commit | bf0f6aaf18895c979dcf61ecb26bdd58a238a69b (patch) | |
tree | 830e0168c398c5ffc685e0cd39ccc2274244019c /sapi | |
parent | 1f04f162a6f9db6cc3019bb617062aa5e0d2101f (diff) | |
download | php-git-bf0f6aaf18895c979dcf61ecb26bdd58a238a69b.tar.gz |
Improve class entry generation
Related to GH-6701
Diffstat (limited to 'sapi')
-rw-r--r-- | sapi/apache2handler/php_functions_arginfo.h | 1 | ||||
-rw-r--r-- | sapi/cgi/cgi_main_arginfo.h | 1 | ||||
-rw-r--r-- | sapi/fpm/fpm/fpm_main_arginfo.h | 1 | ||||
-rw-r--r-- | sapi/litespeed/lsapi_main_arginfo.h | 1 | ||||
-rw-r--r-- | sapi/phpdbg/phpdbg_arginfo.h | 1 |
5 files changed, 0 insertions, 5 deletions
diff --git a/sapi/apache2handler/php_functions_arginfo.h b/sapi/apache2handler/php_functions_arginfo.h index 120171aa08..0830189057 100644 --- a/sapi/apache2handler/php_functions_arginfo.h +++ b/sapi/apache2handler/php_functions_arginfo.h @@ -62,4 +62,3 @@ static const zend_function_entry ext_functions[] = { ZEND_FE(apache_get_modules, arginfo_apache_get_modules) ZEND_FE_END }; - diff --git a/sapi/cgi/cgi_main_arginfo.h b/sapi/cgi/cgi_main_arginfo.h index ff61f46ec8..fb4f8d9dc8 100644 --- a/sapi/cgi/cgi_main_arginfo.h +++ b/sapi/cgi/cgi_main_arginfo.h @@ -24,4 +24,3 @@ static const zend_function_entry ext_functions[] = { ZEND_FE(apache_response_headers, arginfo_apache_response_headers) ZEND_FE_END }; - diff --git a/sapi/fpm/fpm/fpm_main_arginfo.h b/sapi/fpm/fpm/fpm_main_arginfo.h index 7f52c3b071..97ec6c4e8d 100644 --- a/sapi/fpm/fpm/fpm_main_arginfo.h +++ b/sapi/fpm/fpm/fpm_main_arginfo.h @@ -25,4 +25,3 @@ static const zend_function_entry ext_functions[] = { ZEND_FE(fpm_get_status, arginfo_fpm_get_status) ZEND_FE_END }; - diff --git a/sapi/litespeed/lsapi_main_arginfo.h b/sapi/litespeed/lsapi_main_arginfo.h index 534f8adcc6..3db49d9473 100644 --- a/sapi/litespeed/lsapi_main_arginfo.h +++ b/sapi/litespeed/lsapi_main_arginfo.h @@ -35,4 +35,3 @@ static const zend_function_entry ext_functions[] = { ZEND_FE(litespeed_finish_request, arginfo_litespeed_finish_request) ZEND_FE_END }; - diff --git a/sapi/phpdbg/phpdbg_arginfo.h b/sapi/phpdbg/phpdbg_arginfo.h index 9e62738e11..043f667459 100644 --- a/sapi/phpdbg/phpdbg_arginfo.h +++ b/sapi/phpdbg/phpdbg_arginfo.h @@ -71,4 +71,3 @@ static const zend_function_entry ext_functions[] = { ZEND_FE(phpdbg_get_executable, arginfo_phpdbg_get_executable) ZEND_FE_END }; - |