diff options
author | Marcus Boerger <helly@php.net> | 2003-08-24 16:35:58 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2003-08-24 16:35:58 +0000 |
commit | cec053f70763e9974b48836e37adcc03a8f052b6 (patch) | |
tree | 4bba35efa80b8c06673d2256b8fd1d575f41cd67 /ext/reflection/php_reflection.c | |
parent | ea36fc4143188228eb31c54b746e9d5884db5cd6 (diff) | |
download | php-git-cec053f70763e9974b48836e37adcc03a8f052b6.tar.gz |
Don't identify alias'ed functions
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r-- | ext/reflection/php_reflection.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 8562256d9b..79024c54ce 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -357,9 +357,6 @@ static void _function_string(string *str, zend_function *fptr, char* indent TSRM string_printf(str, fptr->common.scope ? "%sMethod [ " : "%sFunction [ ", indent); string_printf(str, (fptr->type == ZEND_USER_FUNCTION) ? "<user> " : "<internal> "); - if (fptr->common.fn_flags & ZEND_ACC_ALIAS) { - string_printf(str, "<alias> "); - } if (fptr->common.fn_flags & ZEND_ACC_CTOR) { string_printf(str, "<ctor> "); } @@ -643,14 +640,6 @@ ZEND_METHOD(reflection_function, isuserdefined) } /* }}} */ -/* {{{ proto public bool Reflection_Function::isAlias() - Returns whether this method is static */ -ZEND_METHOD(reflection_function, isalias) -{ - _function_check_flag(INTERNAL_FUNCTION_PARAM_PASSTHRU, ZEND_ACC_ALIAS); -} -/* }}} */ - /* {{{ proto public string Reflection_Function::getFileName() Returns the filename of the file this function was declared in */ ZEND_METHOD(reflection_function, getfilename) |