diff options
author | Marcus Boerger <helly@php.net> | 2003-09-02 13:12:47 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2003-09-02 13:12:47 +0000 |
commit | bd86aff00507712a8e67b449a23165db2f75190b (patch) | |
tree | 29134118edfcd5fbc7a82939e6ac18d4e73874b0 | |
parent | e6ea5ca9c3a65dcfdc5dea816cc0b4d5aa6729cf (diff) | |
download | php-git-bd86aff00507712a8e67b449a23165db2f75190b.tar.gz |
These are implicit properties as denoted by the flag. Dynamic properties only
exist in one single object and currently reflection api is not capable of
showing those.
-rw-r--r-- | Zend/zend_reflection_api.c | 2 | ||||
-rw-r--r-- | ext/reflection/php_reflection.c | 2 |
2 files changed, 2 insertions, 2 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) { diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 08eda3c105..f7f5f08151 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.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) { |