diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2018-09-24 20:57:39 +0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2019-02-13 12:21:18 +0100 |
commit | 6347f0b937cc3fb3edb38003a41f3f9e8608831d (patch) | |
tree | 6896dcf4beff65309a56dd09d0c6a71c32d938ee /ext/reflection/php_reflection.h | |
parent | 34122ede2116777b02473a7d4430a15edcc58063 (diff) | |
download | php-git-6347f0b937cc3fb3edb38003a41f3f9e8608831d.tar.gz |
Implement ReflectionReference
RFC: https://wiki.php.net/rfc/reference_reflection
Diffstat (limited to 'ext/reflection/php_reflection.h')
-rw-r--r-- | ext/reflection/php_reflection.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/reflection/php_reflection.h b/ext/reflection/php_reflection.h index 82dacb5501..b1d5717e3f 100644 --- a/ext/reflection/php_reflection.h +++ b/ext/reflection/php_reflection.h @@ -43,6 +43,7 @@ extern PHPAPI zend_class_entry *reflection_method_ptr; extern PHPAPI zend_class_entry *reflection_property_ptr; extern PHPAPI zend_class_entry *reflection_extension_ptr; extern PHPAPI zend_class_entry *reflection_zend_extension_ptr; +extern PHPAPI zend_class_entry *reflection_reference_ptr; PHPAPI void zend_reflection_class_factory(zend_class_entry *ce, zval *object); |