diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2020-08-07 15:17:59 +0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2020-08-07 16:40:27 +0200 |
commit | 01cbb5967cdc1c8844df81b3b2b97a65b5ecbb9b (patch) | |
tree | bd5469c92581b883ed70665c6b0e31602b87d144 /Zend/zend_API.h | |
parent | 978b7de244197ae7b7a7c2a5d7e1dd790254455f (diff) | |
download | php-git-01cbb5967cdc1c8844df81b3b2b97a65b5ecbb9b.tar.gz |
Accept zend_object* in zend_unset_property
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r-- | Zend/zend_API.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h index 4d5de411bf..7707bbc001 100644 --- a/Zend/zend_API.h +++ b/Zend/zend_API.h @@ -389,7 +389,7 @@ ZEND_API void zend_update_property_double(zend_class_entry *scope, zval *object, ZEND_API void zend_update_property_str(zend_class_entry *scope, zval *object, const char *name, size_t name_length, zend_string *value); ZEND_API void zend_update_property_string(zend_class_entry *scope, zval *object, const char *name, size_t name_length, const char *value); ZEND_API void zend_update_property_stringl(zend_class_entry *scope, zval *object, const char *name, size_t name_length, const char *value, size_t value_length); -ZEND_API void zend_unset_property(zend_class_entry *scope, zval *object, const char *name, size_t name_length); +ZEND_API void zend_unset_property(zend_class_entry *scope, zend_object *object, const char *name, size_t name_length); ZEND_API int zend_update_static_property_ex(zend_class_entry *scope, zend_string *name, zval *value); ZEND_API int zend_update_static_property(zend_class_entry *scope, const char *name, size_t name_length, zval *value); |