diff options
author | Máté Kocsis <kocsismate@woohoolabs.com> | 2021-02-14 12:03:48 +0100 |
---|---|---|
committer | Máté Kocsis <kocsismate@woohoolabs.com> | 2021-02-14 12:03:48 +0100 |
commit | 31088eef456679b0ead6fe955dded0e9a38928da (patch) | |
tree | 3cd3e0e6a08dddb6b4d5ecf92c3132b527739104 /sapi/phpdbg | |
parent | 8ffc20ace6c8a59b30aea53e2100aa26e4f1f3ee (diff) | |
download | php-git-31088eef456679b0ead6fe955dded0e9a38928da.tar.gz |
Enable class entry generation for sapi extensions
Diffstat (limited to 'sapi/phpdbg')
-rw-r--r-- | sapi/phpdbg/phpdbg.stub.php | 2 | ||||
-rw-r--r-- | sapi/phpdbg/phpdbg_arginfo.h | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/sapi/phpdbg/phpdbg.stub.php b/sapi/phpdbg/phpdbg.stub.php index 4d733ccaf6..40a51d892a 100644 --- a/sapi/phpdbg/phpdbg.stub.php +++ b/sapi/phpdbg/phpdbg.stub.php @@ -1,6 +1,6 @@ <?php -/** @generate-function-entries */ +/** @generate-class-entries */ function phpdbg_break_next(): void {} diff --git a/sapi/phpdbg/phpdbg_arginfo.h b/sapi/phpdbg/phpdbg_arginfo.h index a4ee52d814..9e62738e11 100644 --- a/sapi/phpdbg/phpdbg_arginfo.h +++ b/sapi/phpdbg/phpdbg_arginfo.h @@ -1,5 +1,5 @@ /* This is a generated file, edit the .stub.php file instead. - * Stub hash: 3fd1a8c30695df2089655b1785905381734ac1c1 */ + * Stub hash: dc2e5420ea396c6235429c9606875ad2332811cb */ ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_phpdbg_break_next, 0, 0, IS_VOID, 0) ZEND_END_ARG_INFO() @@ -71,3 +71,4 @@ static const zend_function_entry ext_functions[] = { ZEND_FE(phpdbg_get_executable, arginfo_phpdbg_get_executable) ZEND_FE_END }; + |