Skip to content

Commit 40f6fde

Browse files
committed
Comments
1 parent abbd7e2 commit 40f6fde

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

ext/reflection/php_reflection.h

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,15 @@ extern PHPAPI zend_class_entry *reflection_lazy_object_ptr;
5151
PHPAPI void zend_reflection_class_factory(zend_class_entry *ce, zval *object);
5252

5353
/* Sets the value of a property, bypassing a set hook if defined.
54+
* 'prop': The property to set
55+
* 'unmangled_name': The name of the property
5456
* 'cache_slot': An opaque pointer used as an internal cache. The same
5557
* cache_slot can be used again with the same 'unmangled_name' and 'scope'.
56-
* Must be zeroed on first use. May be NULL. */
58+
* Must be zeroed on first use. May be NULL.
59+
* 'scope': The scope from which to set the property
60+
* 'object': The object to set the value on
61+
* 'value': The value to set
62+
*/
5763
PHPAPI void zend_reflection_property_set_raw_value(
5864
zend_property_info *prop, zend_string *unmangled_name,
5965
void *cache_slot[3], zend_class_entry *scope,

0 commit comments

Comments
 (0)