diff options
author | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-10-25 19:20:03 +0100 |
---|---|---|
committer | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-10-25 20:14:07 +0100 |
commit | ef6adb4e27853eb19bf50bad6486311920d6af7b (patch) | |
tree | 81c43bbb23f00f94a0f42a3c0f32bf57a758cc24 /ext/reflection/php_reflection.c | |
parent | fab76e3a11368f7af182973754b0f348e0843301 (diff) | |
download | php-git-ef6adb4e27853eb19bf50bad6486311920d6af7b.tar.gz |
Make ReflectionUnionType final
Closes GH-6384
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r-- | ext/reflection/php_reflection.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 7adcfc506a..d1957521c0 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -6529,6 +6529,7 @@ PHP_MINIT_FUNCTION(reflection) /* {{{ */ INIT_CLASS_ENTRY(_reflection_entry, "ReflectionUnionType", class_ReflectionUnionType_methods); reflection_init_class_handlers(&_reflection_entry); + _reflection_entry.ce_flags |= ZEND_ACC_FINAL | ZEND_ACC_NO_DYNAMIC_PROPERTIES; reflection_union_type_ptr = zend_register_internal_class_ex(&_reflection_entry, reflection_type_ptr); INIT_CLASS_ENTRY(_reflection_entry, "ReflectionMethod", class_ReflectionMethod_methods); |