diff options
author | Christoph M. Becker <cmbecker69@gmx.de> | 2021-01-24 16:06:49 +0100 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2021-01-24 16:06:49 +0100 |
commit | bff7761653ab44c848e71f9d9727c7801588a50c (patch) | |
tree | e6c911d644d68c569b81c7d6e22870d7c850db6b | |
parent | 02933f923e19c37a4df141a2e1acd991eb856c5c (diff) | |
download | php-git-bff7761653ab44c848e71f9d9727c7801588a50c.tar.gz |
Add missing stub for com_exception
-rw-r--r-- | ext/com_dotnet/com_extension.stub.php | 4 | ||||
-rw-r--r-- | ext/com_dotnet/com_extension_arginfo.h | 7 |
2 files changed, 10 insertions, 1 deletions
diff --git a/ext/com_dotnet/com_extension.stub.php b/ext/com_dotnet/com_extension.stub.php index 29c382db33..e3194efe06 100644 --- a/ext/com_dotnet/com_extension.stub.php +++ b/ext/com_dotnet/com_extension.stub.php @@ -82,3 +82,7 @@ class dotnet public function __construct(string $assembly_name, string $datatype_name, int $codepage = CP_ACP) {} } #endif + +final class com_exception extends exception +{ +} diff --git a/ext/com_dotnet/com_extension_arginfo.h b/ext/com_dotnet/com_extension_arginfo.h index cca7769c34..d290161fd0 100644 --- a/ext/com_dotnet/com_extension_arginfo.h +++ b/ext/com_dotnet/com_extension_arginfo.h @@ -1,5 +1,5 @@ /* This is a generated file, edit the .stub.php file instead. - * Stub hash: da1da8fcfe8a04d08d354ad2cc5a3658d16c3076 */ + * Stub hash: 6b162963bcceb90144fdd3165137fb567f916812 */ ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_variant_set, 0, 2, IS_VOID, 0) ZEND_ARG_OBJ_INFO(0, variant, variant, 0) @@ -226,3 +226,8 @@ static const zend_function_entry class_dotnet_methods[] = { #endif ZEND_FE_END }; + + +static const zend_function_entry class_com_exception_methods[] = { + ZEND_FE_END +}; |