From: Antony Dovgal Date: Wed, 17 May 2006 14:28:31 +0000 (+0000) Subject: change argument name, it should be "object" not "property" X-Git-Tag: BEFORE_NEW_OUTPUT_API~177 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fe9485598373fe4af9f403483484ba1d37d1b3de;p=php change argument name, it should be "object" not "property" --- diff --git a/Zend/zend_object_handlers.h b/Zend/zend_object_handlers.h index cde3e58e95..fcc9b8154a 100644 --- a/Zend/zend_object_handlers.h +++ b/Zend/zend_object_handlers.h @@ -53,12 +53,12 @@ typedef zval **(*zend_object_get_property_ptr_ptr_t)(zval *object, zval *member /* Used to set object value. Can be used to override assignments and scalar write ops (like ++, +=) on the object */ -typedef void (*zend_object_set_t)(zval **property, zval *value TSRMLS_DC); +typedef void (*zend_object_set_t)(zval **object, zval *value TSRMLS_DC); /* Used to get object value. Can be used when converting object value to * one of the basic types and when using scalar ops (like ++, +=) on the object */ -typedef zval* (*zend_object_get_t)(zval *property TSRMLS_DC); +typedef zval* (*zend_object_get_t)(zval *object TSRMLS_DC); /* Used to check if a property of the object exists */ /* param has_set_exists: