summaryrefslogtreecommitdiff
path: root/Zend/zend_object_handlers.h
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2004-03-21 18:07:27 +0000
committerStanislav Malyshev <stas@php.net>2004-03-21 18:07:27 +0000
commitbd9b600c3c630dc5b8b2357087425bfce6b4f9a9 (patch)
tree328a8d935d70352d47bc698cd9841dce8b62ae1b /Zend/zend_object_handlers.h
parentac7283a602dafe53956c95498d87c917c7cba949 (diff)
downloadphp-git-bd9b600c3c630dc5b8b2357087425bfce6b4f9a9.tar.gz
API change for read_property:
instead of bool silent it now gets fetch type This can be used for creating proxy objects for write contexts
Diffstat (limited to 'Zend/zend_object_handlers.h')
-rw-r--r--Zend/zend_object_handlers.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_object_handlers.h b/Zend/zend_object_handlers.h
index a9ad231fb8..89c4b06923 100644
--- a/Zend/zend_object_handlers.h
+++ b/Zend/zend_object_handlers.h
@@ -29,7 +29,7 @@ union _zend_function;
symbol table, its reference count should be 0.
*/
/* Used to fetch property from the object, read-only */
-typedef zval *(*zend_object_read_property_t)(zval *object, zval *member, zend_bool silent TSRMLS_DC);
+typedef zval *(*zend_object_read_property_t)(zval *object, zval *member, int type TSRMLS_DC);
/* Used to fetch dimension from the object, read-only */
typedef zval *(*zend_object_read_dimension_t)(zval *object, zval *offset, int type TSRMLS_DC);