diff options
Diffstat (limited to 'Zend/zend_reflection_api.c')
-rw-r--r-- | Zend/zend_reflection_api.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_reflection_api.c b/Zend/zend_reflection_api.c index 08eda3c105..f7f5f08151 100644 --- a/Zend/zend_reflection_api.c +++ b/Zend/zend_reflection_api.c @@ -430,7 +430,7 @@ static void _function_string(string *str, zend_function *fptr, char* indent TSRM static void _property_string(string *str, zend_property_info *prop, char* indent TSRMLS_DC) { string_printf(str, "%sProperty [ %s", indent, - (prop->flags & ZEND_ACC_IMPLICIT_PUBLIC) ? "<dynamic> " : "<default> "); + (prop->flags & ZEND_ACC_IMPLICIT_PUBLIC) ? "<implicit> " : "<default> "); /* These are mutually exclusive */ switch (prop->flags & ZEND_ACC_PPP_MASK) { |